-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.08 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.08 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
55
56
57
58
59
60
61
62
{
"name": "codeblitz",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix '{api,data,game-engine,sidekick}/{src,test}/*.{js,ts}'",
"format": "prettier --write '{api,data,game-engine,sidekick}/{src,test}/**/*.{js,ts}'",
"build:data": "cd data && npm run build",
"build:api": "cd api && npm run build",
"build:game-engine": "cd game-engine && npm run build",
"build:sidekick": "cd sidekick && npm run build",
"build:seed": "cd seed && npm run build",
"build": "run-s build:*",
"clean:data": "cd data && npm run clean",
"clean:api": "cd api && npm run clean",
"clean:game-engine": "cd game-engine && npm run clean",
"clean:sidekick": "cd sidekick && npm run clean",
"clean": "run-p clean:*",
"install:data": "cd data && npm install",
"install:api": "cd api && npm install",
"install:game-engine": "cd game-engine && npm install",
"install:sidekick": "cd sidekick && npm install",
"install:seed": "cd seed && npm install",
"postinstall": "run-p install:*",
"preseed": "npm run build:data",
"seed": "cd seed && npm run start",
"test:api": "cd api && npm run test",
"test:data": "cd data && npm run test",
"test:game-engine": "cd game-engine && npm run test",
"test": "run-p test:*",
"start:api:prod": "cd api && npm run start:prod",
"prestart:prod": "npm run build",
"start:prod": "run-p start:*:*"
},
"author": "",
"license": "ISC",
"dependencies": {
"class-validator": "^0.12.2",
"express": "^4.17.1",
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"class-transformer": "^0.3.2",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 14",
"npm": ">= 6"
}
}