-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "spatial-party",
"version": "1.0.0",
"description": "",
"main": "src/server/server.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"lint": "eslint --cache --ext .js,.jsx src/",
"develop": "rm -rf dist/* && cross-env NODE_ENV=development nodemon --watch src src/server/server.js",
"start": "cross-env NODE_ENV=production node src/server/server.js",
"test": "jest"
},
"author": "Souradip Mookerjee",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.4.1",
"cross-env": "^5.2.1",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.7.0",
"express": "^4.17.1",
"face-api.js": "^0.22.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"keydrown": "^1.2.7",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"peerjs": "^1.2.0",
"shortid": "^2.2.15",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"terser-webpack-plugin": "^2.3.5",
"throttle-debounce": "^2.1.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}