-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 2.22 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
{
"name": "arccode",
"version": "0.0.0",
"description": "A role-playing game for developers",
"main": "index.js",
"author": "David Hérault <dherault@gmail.com> (https://github.com/dherault)",
"repository": {
"type": "git",
"url": "git+https://github.com/dherault/arccode.git"
},
"bugs": {
"url": "https://github.com/dherault/arccode/issues"
},
"homepage": "https://github.com/dherault/arccode",
"license": "GPL-3.0-only",
"scripts": {
"prepare": "husky",
"install:all": "npm run install:monorepo && npm run install:app && npm run install:functions && npm run install:arccode-core && npm run install:arccode-keyword-thresholds && npm run install:arccode-vscode-extension && npm run install:language-keywords",
"install:monorepo": "npm install",
"install:app": "cd arccode.dev && npm install",
"install:functions": "cd arccode.dev/functions && npm install",
"install:arccode-core": "cd packages/arccode-core && npm install",
"install:arccode-keyword-thresholds": "cd packages/arccode-keyword-thresholds && npm install",
"install:arccode-vscode-extension": "cd packages/arccode-vscode-extension && npm install",
"install:language-keywords": "cd packages/language-keywords && npm install",
"test": "npm run test:arccode-core && npm run test:language-keywords",
"test:arccode-core": "cd packages/arccode-core && npm run test",
"test:language-keywords": "cd packages/language-keywords && npm run test",
"lint": "npm run lint:app && npm run lint:functions && npm run lint:arccode-core && npm run lint:arccode-keyword-thresholds && npm run lint:arccode-vscode-extension && npm run lint:language-keywords",
"lint:app": "cd arccode.dev && npm run lint",
"lint:functions": "cd arccode.dev/functions && npm run lint",
"lint:arccode-core": "cd packages/arccode-core && npm run lint",
"lint:arccode-keyword-thresholds": "cd packages/arccode-keyword-thresholds && npm run lint",
"lint:arccode-vscode-extension": "cd packages/arccode-vscode-extension && npm run lint",
"lint:language-keywords": "cd packages/language-keywords && npm run lint"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-dherault-typescript": "^1.3.7",
"husky": "^9.1.5"
}
}