-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 965 Bytes
/
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
{
"name": "backend",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpileOnly src/server.ts",
"build": "tsc",
"start": "node build/src/server.js",
"test": "jest"
},
"dependencies": {
"axios": "^0.19.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.2"
}
}