-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 995 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 995 Bytes
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
{
"name": "open_draw",
"version": "1.0.0",
"main": "./server.js",
"description": "Draw with your eyes",
"private": true,
"scripts": {
"test": "jest ./test/",
"build": "webpack",
"serve": "nodemon ./bin/www",
"checkstyle": "npx standard src/ test/ test_views/ settings/",
"fixstyle": "npx standard --fix src/ test/ test_views/ settings/",
"runproduction": "pm2 start ./bin/www"
},
"author": "",
"license": "ISC",
"dependencies": {
"common-tags": "^1.8.2",
"debug": "^4.3.2",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"morgan": "^1.10.0",
"object-inspect": "^1.11.0",
"sqlite3": "^5.0.11"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"css-loader": "^6.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"standard": "^17.0.0",
"style-loader": "^3.3.0",
"webpack": "^5.59.0",
"webpack-cli": "^4.9.1"
}
}