-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "mooc-2021-part03",
"version": "1.0.0",
"description": "Full Stack Open CI/CD exercise 11.21",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"start-prod": "node app.js",
"build": "webpack --mode production",
"eslint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilselroos/FullStackOpen-cicd.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/emilselroos/FullStackOpen-cicd/issues"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.10.0",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^10.0.4",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"cypress": "8.6.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-react": "^7.19.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^25.5.4",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.2",
"fs": "0.0.1-security",
"mongoose": "^5.13.5",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0",
"node": "^16.6.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"request": "^2.79.0",
"web-vitals": "^1.0.1"
}
}