-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.83 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
{
"name": "boltz",
"version": "1.1.0",
"description": "Superfast JS serverless functions",
"main": "./build/src/index.js",
"scripts": {
"start": "node ./build/src/index.js",
"dev": "nodemon ./build/src/index.js",
"build": "tsc",
"build:dev": "tsc -w",
"pack": "npm run build && shx mkdir -p boltz-engine && shx cp -r ./build ./boltz-engine/build && shx cp -r ./dist/* ./boltz-engine && shx rm -r ./boltz-engine/**/*.map && shx cp ./package.json ./boltz-engine && shx cp -r ./public/ ./boltz-engine/public && shx cp ./README.md ./boltz-engine/README.md && shx chmod u+x ./boltz-engine/start.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"docker:build": "cross-var docker build -t bsnk/boltz-engine:$npm_package_version .",
"docker:push": "cross-var docker push bsnk/boltz-engine:$npm_package_version"
},
"author": "bsnk-dev",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/nedb": "^1.8.12",
"@types/nedb-logger": "^1.8.3",
"@types/pidusage": "^2.0.1",
"@types/string-hash": "^1.1.1",
"@types/usage": "0.0.28",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"cross-var": "^1.1.0",
"eslint": "^7.31.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.12",
"shx": "^0.3.3"
},
"dependencies": {
"async-wait-until": "^2.0.7",
"bsnk-dev-vm2": "^1.2.3",
"celebrate": "^15.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"fast-folder-size": "^1.4.0",
"jsEvents": "npm:events@^3.2.0",
"map-cache-ttl": "^0.1.1",
"memfs": "^3.2.2",
"nedb": "^1.8.0",
"nedb-logger": "^0.1.0",
"nedb-multi": "^1.2.2",
"node-run-cmd": "^1.0.1",
"pidusage": "^2.0.21",
"string-hash": "^1.1.3",
"typescript": "^4.3.5"
}
}