-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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
45
46
47
48
49
50
51
{
"name": "bar3-server",
"version": "1.1.1",
"description": "The local server for Bar 3",
"main": "./build/src/index.js",
"bin": "./build/src/index.js",
"scripts": {
"start": "node ./build/src/index.js",
"dev": "nodemon ./build/src/index.js --debug",
"verbose": "node ./build/src/index.js --debug",
"prebuild": "shx rm -rf ./build/*",
"build": "tsc",
"pack": "npm run build && pkg . --target node12-win-x86,node12-linux,node12-macos-x64",
"postpack": "shx mkdir -p dist && shx mv bar3-server-* dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "bsnk-dev",
"license": "MIT",
"dependencies": {
"celebrate": "^14.0.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"nedb": "^1.8.0",
"node-html-parser": "^3.3.5",
"open": "^7.3.1",
"superagent": "^6.1.0",
"typescript": "^4.1.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/nedb": "^1.8.11",
"@types/superagent": "^4.1.10",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.7",
"pkg": "^4.4.9",
"shx": "^0.3.3"
},
"pkg": {
"assets": [
"./public/**/*",
"./package.json"
]
}
}