-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "Pizzaria",
"version": "1.0.0",
"private": true,
"description": "The online tool to connect people and to make them buy a lot of pizzas so we can profit from them",
"author": "Mikhail Stepanov, Ilya Yanchuk, Suhail Ansari, Gil Kwak",
"license": "UNLICENSED",
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "node server/index.js",
"magic": "npm run react-dev & npm run server-dev & npm run sass-dev",
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server/index.js",
"sass-dev": "node-sass --watch react/dist/sass/styles.scss -o react/dist --output-style compressed",
"test": "mocha"
},
"dependencies": {
"axios": "^0.21.1",
"babel-cli": "^6.7.5",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.7.2",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chai": "^4.3.0",
"chai-http": "^3.0.0",
"express": "4.16.2",
"jest": "^22.4.4",
"jquery": "^3.5.1",
"mocha": "^5.2.0",
"mysql": "^2.18.1",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.0",
"socket.io": "2.4.0",
"webpack": "^3.12.0"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1"
},
"babel": {
"presets": [
"es2015"
]
}
}