-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
{
"name": "atelier",
"version": "1.0.0",
"description": "Front End Capstone",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"client-dev": "webpack --mode development --watch",
"server-dev": " npx nodemon server/index.js ",
"test": "jest",
"test-coverage": "jest --coverage",
"test-watch": "npm test -- --watch --maxWorkers 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RPP2207goldeneye/Atelier.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RPP2207goldeneye/Atelier/issues"
},
"homepage": "https://github.com/RPP2207goldeneye/Atelier#readme",
"jest": {
"verbose": true
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"babel-core": "^6.26.3",
"babel-jest": "^29.3.1",
"babel-loader": "^8.3.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^6.7.3",
"jest": "^29.3.1",
"react-test-renderer": "^17.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"axios": "^0.21.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.0.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"jest-environment-jsdom": "^29.3.1",
"jquery": "^3.1.1",
"lodash": "^4.17.21",
"mongoose": "^5.10.15",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.20",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-medium-image-zoom": "^5.1.2",
"react-icons": "^4.7.1",
"react-modal": "^3.16.1"
}
}