-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (33 loc) · 879 Bytes
/
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
{
"name": "Quiz",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"initDB": "mkdir data && touch data/quiz.db && node scripts/initializeDB.js data/quiz.db",
"test": "sh runTest.sh",
"setup": "npm install && npm run initDB",
"reset": "rm -rf data && npm run setup",
"testServer": "mkdir data && cp tests/data/quiz.db data/quiz.db",
"removeProdData": "rm -rf data"
},
"dependencies": {
"bcryptjs": "^2.1.0",
"body-parser": "~1.8.1",
"cookie-parser": "~1.3.3",
"debug": "~2.0.0",
"express": "~4.9.0",
"express-session": "^1.9.3",
"jade": "~1.6.0",
"lodash": "^2.4.1",
"mocha": "^2.1.0",
"morgan": "~1.3.0",
"serve-favicon": "~2.1.3",
"socket.io": "^1.2.1",
"sqlite3": "~3.0.4",
"squel": "^3.10.0"
},
"devDependencies": {
"chai": "1.10.0"
}
}