-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.27 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
{
"name": "users-api",
"version": "0.1.0",
"private": true,
"author": "Aldo Bernardes Maciel",
"scripts": {
"build": "tsc && tscpaths -p tsconfig.json -s ./src",
"dev": "ts-node -r tsconfig-paths/register src/server.ts",
"prestart": "npm install",
"start": "npm run build && node dist/server.js",
"prod": "npm run build && npm run start",
"test": "mocha",
"coverage": "NODE_ENV=test nyc npm test"
},
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"cors": "2.8.5",
"express": "4.17.1",
"http-status-codes": "1.4.0",
"log4js": "6.1.2",
"tsc": "1.20150623.0",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@types/chai": "4.2.11",
"@types/chai-http": "4.2.0",
"@types/cors": "2.8.6",
"@types/express": "4.17.3",
"@types/mocha": "7.0.2",
"@types/node": "13.9.5",
"@types/sinon": "^9.0.4",
"chai": "4.2.0",
"chai-http": "4.3.0",
"mocha": "7.1.1",
"nodemon": "2.0.2",
"nyc": "^15.0.0",
"sinon": "^9.0.2",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.2",
"tscpaths": "0.0.9",
"typescript": "3.8.3"
}
}