-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 958 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
{
"name": "my-api",
"version": "0.1.1",
"license": "ISC",
"scripts": {
"start": "node ./build/index",
"dev": "cross-env NODE_ENV=development nodemon ./src/server",
"build": "cross-env NODE_ENV=production webpack",
"test": "jest"
},
"dependencies": {
"express": "4.18.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "4.17.14",
"@types/jest": "27.5.1",
"@types/morgan": "^1.9.4",
"@types/supertest": "^2.0.12",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"jest": "28.1.0",
"nodemon": "2.0.16",
"supertest": "^6.3.3",
"ts-jest": "28.0.3",
"ts-loader": "9.3.0",
"ts-node": "10.8.0",
"typescript": "4.6.4",
"webpack": "5.72.1",
"webpack-cli": "4.9.2"
},
"nodemonConfig": {
"watch": "./src",
"ext": "ts, js, json"
}
}