-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.02 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
61
62
63
64
65
66
{
"name": "numenu-api",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"start": "PORT=5000 NODE_ENV=development ./node_modules/.bin/ts-node ./server/server.ts",
"builded": "PORT=5000 NODE_ENV=production node ./dist/server/server.js",
"unit-test": "NODE_ENV=test mocha --opts dist/tests/unit/config/mocha.opts ./dist/tests/unit/unit.test.js",
"integration-test": "NODE_ENV=test mocha --opts dist/tests/integration/config/mocha.opts ./dist/tests/integration/integration.test.js",
"unit-coverage": "nyc --reporter=html npm run unit-test",
"integration-coverage": "nyc --reporter=html npm run integration-test"
},
"keywords": [
"API",
"TypeScript",
"Node",
"ES6"
],
"author": "George .S. Bezerra <[email protected]> (https://georgebezerra.netlify.com/)",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.6",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"del": "^4.1.1",
"express": "^4.17.0",
"http": "0.0.0",
"http-status": "^1.3.2",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^7.11.0",
"sequelize": "^5.8.6"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/express": "^4.16.1",
"@types/http-status": "^0.2.30",
"@types/jwt-simple": "^0.5.33",
"@types/lodash": "^4.14.132",
"@types/mocha": "^5.2.6",
"@types/morgan": "^1.7.35",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/sequelize": "^4.28.1",
"@types/supertest": "^2.0.7",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-typescript": "^5.0.1",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sequelize-cli": "^5.4.0",
"supertest": "^4.0.2",
"testdouble": "^3.11.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
}
}