-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "api",
"version": "1.0.0",
"description": "A base API Project Structure",
"main": "src/app.ts",
"scripts": {
"start": "tsc && webpack --config webpack.config.js && node dist/src/app.js",
"build": "tsc && webpack --config webpack.config.js",
"test": "jasmine-ts --config=jasmine.json",
"coverage": "nyc -r html -e .ts -x \"**/*.spec.ts\" npm run test"
},
"keywords": [],
"author": "Israel Olvera ([email protected])[https://github.com/Skrigueztep]",
"license": "Private",
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/jasmine": "^3.5.11",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.26",
"@types/supertest": "^2.0.10",
"@types/typescript": "^2.0.0",
"copy-webpack-plugin": "^6.0.3",
"jasmine": "^3.6.1",
"jasmine-ts": "^0.3.0",
"nyc": "^15.1.0",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.1"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0",
"rotating-file-stream": "^2.1.3"
}
}