-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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": "dagobah-fastfood",
"version": "1.0.0",
"description": "Fast food delivery system for planet Dagobah",
"engines": {
"node": "7.8.x"
},
"main": "index.js",
"scripts": {
"start": "node --use_strict index.js",
"build": "cd client && npm run build",
"heroku-postbuild": "cd client/ && npm install --only=dev && npm install && npm run build",
"test": "./node_modules/.bin/jest",
"test:night": "./node_modules/.bin/concurrently \"npm start\" \"nightwatch --env chrome\"",
"test:firefox": "./node_modules/.bin/nightwatch",
"dagobah": "npm install && cd client && npm install && cd .. && npm run build && npm start"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dagobahtech/acit2910.git"
},
"author": "dagobahtech",
"license": "ISC",
"bugs": {
"url": "https://github.com/dagobahtech/acit2910/issues"
},
"homepage": "https://github.com/dagobahtech/acit2910#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"bootstrap": "^4.0.0-alpha.6",
"chart.js": "^2.5.0",
"concurrently": "^3.4.0",
"express": "^4.15.2",
"express-session": "^1.15.2",
"font-awesome": "^4.7.0",
"ini": "^1.3.4",
"jquery": "^3.2.1",
"multer": "^1.3.0",
"pg": "^6.1.5",
"socket.io": "^1.7.4"
},
"devDependencies": {
"jest": "^20.0.0",
"nightwatch": "^0.9.15"
}
}