forked from ztnel/masterbomb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.16 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.16 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
52
53
54
{
"name": "masterbomb",
"version": "1.0.0",
"description": "��#\u0000 \u0000M\u0000a\u0000s\u0000t\u0000e\u0000r\u0000 \u0000B\u0000o\u0000m\u0000b\u0000\r\u0000 \u0000\r\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000e\u0000d\u0000:\u0000 \u00002\u00000\u00002\u00001\u0000-\u00000\u00002\u0000\r\u0000 \u0000\r\u0000 \u0000B\u0000i\u0000l\u0000l\u0000 \u0000o\u0000f\u0000 \u0000M\u0000a\u0000t\u0000e\u0000r\u0000i\u0000a\u0000l\u0000s\u0000 \u0000i\u0000n\u0000 \u0000o\u0000n\u0000e\u0000 \u0000p\u0000l\u0000a\u0000c\u0000e\u0000.\u0000\r\u0000 \u0000",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist/*",
"copy-assets": "ts-node tools/assets",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"start-db": "docker-compose -f docker/docker-compose.yaml --env-file ../.env up -d",
"stop-db": "docker-compose -f docker/docker-compose.yaml --env-file ../.env down",
"initdb": "ts-node tools/initdb",
"dev": "nodemon --watch src -e js,ts,ejs,css --exec npm run dev:start",
"tsc": "tsc",
"probe-api": "cd tests/api && ansible-playbook --connection=local -i 127.0.0.1, main.yaml && cd ../..",
"dev:start": "npm run build && npm run start",
"prebuild": "npm run clean",
"build": "npm run lint && npm run tsc && npm run copy-assets",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/cSDes1gn/masterbomb.git"
},
"keywords": [],
"author": "Christian Sargusingh",
"license": "ISC",
"bugs": {
"url": "https://github.com/cSDes1gn/masterbomb/issues"
},
"homepage": "https://github.com/cSDes1gn/masterbomb#readme",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/http-errors": "^1.8.0",
"@types/node": "^14.14.35",
"@types/pg": "^7.14.11",
"@types/shelljs": "^0.8.8",
"nodemon": "^2.0.7",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3"
},
"dependencies": {
"@primer/octicons": "^13.0.0",
"@types/jquery": "^3.5.5",
"axios": "^0.21.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"jquery": "^3.6.0",
"pg": "^8.5.1",
"pg-promise": "^10.9.5"
}
}