-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 KB
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
{
"name": "webdess",
"version": "1.0.0",
"description": "Petri chart modeling tool",
"main": "server.js",
"scripts": {
"start": "yarn build:watch & pm2 start process.yml",
"stop": "pm2 stop process.yml",
"restart": "pm2 restart process.yml",
"logs": "pm2 logs --out",
"errors": "pm2 logs --err",
"eslint": "eslint --fix .",
"build": "webpack",
"build:watch": "webpack --watch"
},
"_moduleAliases": {
"@db": "db",
"@controllers": "src/controllers",
"@middleware": "src/middleware",
"@routes": "src/routes",
"@utils": "src/utils"
},
"repository": "https://github.com/DenyStark/WebDESS.git",
"author": "DenyStark <denyskrolevetskyi@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"@hapi/joi": "^16.1.7",
"babel-eslint": "^10.0.3",
"body-parser": "^1.19.0",
"ejs": "^2.7.1",
"eslint": "^6.5.1",
"express": "^4.17.1",
"jquery": "3.2.1",
"module-alias": "^2.2.2",
"pg": "^7.12.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
}
}