-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
63 lines (63 loc) · 2.09 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
{
"name": "auction_system",
"version": "1.0.0",
"private": true,
"description": "A Generic Auction System",
"scripts": {
"watch:react": "webpack-dev-server --progress --inline --hot --mode development",
"watch:node": "nodemon --ignore 'docker/*' app.js",
"watch": "npm run fmt & npm run watch:node & npm run watch:react",
"serve": "NODE_ENV=production forever app.js",
"prod": "webpack --progress --mode production & npm run serve",
"test:node": "mocha --timeout 10000",
"test:react": "jest --config ./jest.config.json",
"test": "npm run test:node & npm run test:react",
"fmt": "prettier --print-width 120 --jsx-bracket-same-line --no-bracket-spacing --single-quote --tab-width 4 --write \"assets/**/*.jsx\" 'src/**/*.js' 'migrations/*.js' 'models/*.js' app.js"
},
"author": "Delta Force",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"ejs": "^2.7.1",
"express": "^4.16.2",
"file-loader": "^4.2.0",
"final-form": "^4.18.6",
"md5": "^2.2.1",
"mysql2": "^2.0.0",
"react": "^16.3.1",
"react-dom": "^16.6.0",
"react-final-form": "^6.3.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-toastify": "^5.5.0",
"sequelize": "^5.21.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"sweetalert2": "^9.6.0",
"url-loader": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"assets-webpack-plugin": "^3.9.7",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"css-loader": "^3.4.2",
"forever": "^3.0.2",
"jest": "^26.4.2",
"mocha": "^8.1.2",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}