-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 KB
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
{
"name": "scrumshowdown",
"version": "1.15.5",
"description": "",
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"start:dev": "concurrently \"webpack -w\" \"nodemon bin/www\"",
"build": "webpack",
"jsdoc": "jsdoc -c .jsdoc.js",
"lint": "eslint bin/www client/**.js handlers/**.js routes/**.js services/**.js app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "webpack -p"
},
"author": "elementbound",
"license": "ISC",
"dependencies": {
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"hbs": "^4.1.1",
"http-errors": "~1.6.2",
"morgan": "~1.9.0",
"mustache": "^4.0.1",
"three": "^0.115.0",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/ws": "^7.2.3",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdoc": "^3.6.3",
"nodemon": "^2.0.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}