-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 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
{
"name": "communication-game",
"version": "1.0.0",
"main": "app.js",
"repository": "git@github.com:callab/communication-game.git",
"author": "Sinclair Target <sinclairtarget@gmail.com>",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.6",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-flash": "^0.0.2",
"express-handlebars": "^3.0.2",
"express-session": "^1.16.1",
"express-ws": "^4.0.0",
"forever": "^1.0.0",
"handlebars": "^4.1.2",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"sqlite3": "^4.0.6",
"victor": "^1.1.0"
},
"scripts": {
"dev": "node app.js",
"start": "forever start app.js",
"stop": "forever stopall",
"db": "sqlite3 -batch store.db < schema.sql",
"build": "webpack --mode development --context ./client --config ./client/webpack.config.js",
"build-prod": "webpack --mode production --context ./client --config ./client/webpack.config.js"
},
"devDependencies": {
"clean-webpack-plugin": "^2.0.1",
"phaser": "^3.16.2",
"ts-loader": "^5.4.3",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
}
}