-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "learn_api",
"version": "1.0.0",
"description": "Creating an API using typescript",
"main": "server.ts",
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/ts-node ./server/server.ts",
"builded": "NODE_ENV=development node ./build/server.js",
"unit-test": "NODE_ENV=test mocha --opts build/tests/unit/config/mocha.opts ./build/tests/unit/unit.tests.js",
"integration-test": "NODE_ENV=test mocha --opts build/tests/integration/config/mocha.opts ./build/tests/integration/integration.tests.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"api",
"typescript",
"postgresql",
"node",
"es6"
],
"author": "Weldys Santos",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.1",
"express": "^4.15.4",
"morgan": "^1.8.2",
"pg": "^7.3.0",
"sequelize-cli": "^3.0.0-3"
},
"devDependencies": {
"@types/body-parser": "^1.16.5",
"@types/chai": "^4.0.4",
"@types/express": "^4.0.37",
"@types/mocha": "^2.2.43",
"@types/morgan": "^1.7.33",
"@types/sequelize": "^4.0.73",
"@types/supertest": "^2.0.3",
"chai": "^4.1.2",
"mocha": "^3.5.3",
"sequelize": "^4.10.0",
"supertest": "^3.0.0",
"testdouble": "^3.2.6",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
}
}