-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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": "sonar",
"repository": {
"type": "git",
"url": "git+https://github.com/arso-project/sonar.git"
},
"scripts": {
"test": "tape packages/*/test/*.js",
"start": "node sonar start",
"dev": "run-p dev:*",
"dev:sonar": "node sonar start --dev --disable-authentication",
"dev:client": "cd packages/client; yarn dev",
"dev:example-react": "yarn example react",
"example": "node scripts/example.js",
"build": "run-s build:common build:client build:react build:ui",
"build:common": "cd packages/common; yarn run build",
"build:client": "cd packages/client; yarn run build",
"build:react": "cd packages/react; yarn run build",
"build:ui": "cd packages/ui; yarn run build",
"docs": "run-p docs:*",
"docs:client": "cd packages/client; yarn run doc",
"rebuild": "run-p rebuild:*",
"rebuild:tantivy": "cd node_modules/@arso-project/sonar-tantivy; yarn run postinstall",
"make-links": "./script/dev-link.sh",
"format": "prettier-standard",
"precommit": "prettier-standard --staged"
},
"workspaces": [
"bots/**",
"packages/**",
"examples/**"
],
"license": "GPL-3.0",
"private": true,
"devDependencies": {
"@ksmithut/prettier-standard": "^0.1.0",
"npm-run-all": "^4.1.5",
"tape": "^5.0",
"trace-console-log": "^1.0.0",
"typescript": "^4.6.4"
},
"standard": {
"env": [
"es6",
"node",
"browser"
]
},
"engines": {
"node": ">=16"
}
}