forked from ascentSquad/projCatwalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"name": "projcatwalk",
"version": "1.0.0",
"description": "Ascent Squad's Project Catwalk",
"main": "index.js",
"scripts": {
"test": "jest",
"dev-build": "webpack --env ENV=DEV --config webpack.config.js -w",
"dev-server": "nodemon ./server/index.js",
"build": "webpack --env ENV=PROD --config webpack.config.js --mode production",
"start": "forever start server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ascentSquad/projCatwalk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ascentSquad/projCatwalk/issues"
},
"homepage": "https://github.com/ascentSquad/projCatwalk#readme",
"dependencies": {
"axios": "^0.21.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-static-gzip": "^2.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@testing-library/react": "^12.0.0",
"babel": "^6.23.0",
"babel-loader": "^8.2.2",
"compression-webpack-plugin": "^9.0.0",
"css-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.1.1",
"mini-css-extract-plugin": "^2.3.0",
"nodemon": "^2.0.12",
"style-loader": "^3.2.1",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
}
}