-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
52
53
54
55
56
{
"name": "planner5d-project",
"version": "0.1.0",
"private": true,
"main": "app.js",
"scripts": {
"babel-node": "babel-node --presets=env",
"start": "nodemon --exec npm run babel-node -- ./bin/www",
"babel-node-debug": "babel-node --inspect=9229 --presets=env",
"debug": "nodemon --exec npm run babel-node-debug -- ./bin/www",
"test": "nyc mocha --timeout=10000 --compilers js:babel-core/register",
"coverage": "nyc report --reporter=text-summary",
"lint": "eslint . --ext .js"
},
"dependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"blessed": "^0.1.81",
"bootstrap": "^4.1.3",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"eslint": "^5.0.1",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-mocha": "^5.0.0",
"express": "~4.16.0",
"finale-rest": "github:chillerfx/finale",
"http-errors": "~1.6.2",
"jquery": "^3.3.1",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"morgan": "~1.9.0",
"node-sass": "^4.9.3",
"node-sass-middleware": "^0.11.0",
"nodemon": "^1.17.5",
"nyc": "^12.0.2",
"pug": "2.0.0-beta11",
"sequelize": "^4.39.0",
"sqlite3": "^4.0.2",
"three": "^0.97.0",
"umzug": "^2.1.0",
"uuidv4": "^2.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"babel": {
"presets": [
"env"
]
}
}