-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 979 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
{
"name": "helloer",
"version": "1.0.5",
"private": true,
"scripts": {
"app:clean": "rm -rf node_modules/* && rm -f *.log && rm -f helloer-dist.*.gz",
"app:init": "npm install",
"app:start": "node app/app.js",
"app:package": "tar cfz helloer-dist-$npm_package_version.tgz app/util app/handlers app/app.js start.sh package.json README.md node_modules",
"app:dockerize": "docker build -t $npm_package_name:$npm_package_version .",
"app:version": "echo $npm_package_version",
"app:test": "mocha --reporter spec"
},
"dependencies": {
"date-format" : "^4.0.13",
"axios": "^1.3.4",
"cookie-parser": "~1.4.4",
"debug": "~4.3.2",
"express": "~4.18.1",
"module-alias": "^2.2.2",
"uuid": "9.0.1",
"winston": "3.11.0"
},
"devDependencies": {
"node-mocks-http" : "^1.11.0",
"mocha" : "^10.0.0",
"chai" : "^4.3.6"
},
"_moduleAliases": {
"@util": "app/util",
"@handlers": "app/handlers"
}
}