-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "soup-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "ts-node -T -r dotenv/config src/app.ts",
"copyfiles": "copyfiles --up 1 src/public/*.html dist",
"tsnd": "tsnd --respawn --transpileOnly -r dotenv/config src/app.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"tsc": "tsc"
},
"author": "Ing. Charles Rodriguez",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0-alpha.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.154",
"@types/multer": "^1.4.3",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"copyfiles": "^2.2.0",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1",
"supertest": "^4.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3"
}
}