-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 912 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
{
"name": "crud-api",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start:dev": "cross-env NODE_ENV=development webpack --watch --config webpack.config.js",
"start:prod": "cross-env NODE_ENV=production webpack --config webpack.config.js && node dist/index.js",
"start:multi": "cross-env NODE_ENV=production webpack --config webpack.config.js && cross-env MULTI=true node dist/index.js",
"test": "jest --bail --verbose --silent"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"cross-env": "^7.0.3",
"jest": "^29.3.1",
"nodemon-webpack-plugin": "^4.8.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"uuid": "^9.0.0"
}
}