-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.24 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.24 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "trelloid-api",
"version": "0.1.0",
"description": "API for Trelloid application",
"main": "server.js",
"scripts": {
"build": "babel ./src --out-dir dist",
"clean": "rimraf dist",
"debug": "NODE_ENV=development node --inspect ./src/bin/www.js",
"dev": "npm-run-all lint server",
"lint": "eslint ./src",
"postinstall": "npm run requirement-checks",
"prod": "npm-run-all clean build server:prod",
"requirement-checks": "babel-node checkVersion.js",
"server": "NODE_ENV=development babel-node ./src/bin/www.js",
"server:prod": "NODE_ENV=production node ./dist/cluster.js",
"start": "npm run prod",
"test": "dotenv -e .env mocha -- ./**/*.unit.test.js",
"coverage": "nyc cover _mocha './**/*.unit.test.js",
"watch": "nodemon"
},
"author": "Andy Smith",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cluster": "^0.7.7",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"folktale": "^2.3.2",
"helmet": "^3.21.2",
"http-errors": "^1.7.3",
"mongodb": "^3.5.2",
"mongoose": "^5.8.9",
"npm-run-all": "^4.1.5",
"os": "^0.1.1",
"rimraf": "^2.7.1",
"semver": "^6.3.0",
"swagger-ui-express": "^4.1.3"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/runtime": "^7.8.3",
"chai": "^4.2.0",
"debug": "^4.1.1",
"dirty-chai": "^2.0.1",
"dotenv-cli": "^3.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"morgan": "^1.9.1",
"nock": "^10.0.6",
"nodemon": "^2.0.13",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"swagger-jsdoc": "^3.5.0"
},
"engines": {
"node": ">=11.0.0"
}
}