-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "pobel-backend-node",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"clean": "rimraf dist",
"serve": "cross-env DEBUG=app nodemon --exec babel-node src/app.js ",
"build1": "cross-env NODE_ENV=production babel src --copy-files --out-dir dist",
"serve1": "cross-env NODE_ENV=production node dist/app.js",
"dev": "cross-env NODE_ENV=development npm-run-all serve",
"prod": "npm-run-all clean build1 serve1",
"test": "cross-env NODE_ENV=test mocha --experimental-json-modules -r @babel/register --timeout 10000 --debug-brk"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.4.2",
"axios": "^0.21.1",
"core-js": "^3.15.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"csv": "^5.5.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-acl": "^2.0.8",
"express-session": "^1.17.2",
"express-validator": "^6.11.1",
"http-status": "^1.5.0",
"jalali-moment": "^3.3.10",
"jimp": "^0.16.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"path": "^0.12.7",
"regenerator-runtime": "^0.13.7",
"serve-static": "^1.14.1",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2",
"xlsx-stream-reader": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.13.16",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"errorhandler": "^1.5.1",
"faker": "^5.5.3",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prisma": "^3.4.2",
"rimraf": "^3.0.2"
},
"prisma": {
"schema": "./src/prisma/schema.prisma"
}
}