This repository has been archived by the owner on Nov 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
57
58
59
60
{
"name": "botfront-api",
"version": "0.16.3",
"private": true,
"scripts": {
"start": "node app.js",
"test": "cross-env NODE_ENV=test MONGO_URL=mongodb://dummy ./node_modules/.bin/mocha --ui bdd --reporter spec --colors \"./!(node_modules)/**/*.test.js\" --exit",
"test:watch": "yarn test -- --watch",
"release": "standard-version",
"licenses:summary": "license-checker --summary",
"licenses:csv": "license-checker --csv --out botfront-api-licenses.csv"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "~4.16.0",
"express-validator": "^5.3.1",
"express-winston": "^3.1.0",
"joi": "^14.3.1",
"js-yaml": "^3.13.1",
"jszip": "^3.2.2",
"lodash": "^4.17.10",
"mongoose": "^5.4.11",
"monk": "^6.0.6",
"shortid": "^2.2.14",
"sprintf-js": "^1.1.1",
"swagger-ui-express": "4.0.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.13.0",
"eslint-plugin-import": "^2.18.2",
"http-status": "^1.3.1",
"husky": "^1.3.1",
"license-checker": "^25.0.1",
"mocha": "^5.2.0",
"mongodb": "^3.1.13",
"mongodb-memory-server": "^3.1.2",
"should": "^13.2.3",
"standard-version": "^6.0.1",
"supertest": "^3.4.2",
"supertest-as-promised": "^4.0.2",
"uuid": "^3.3.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}