-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.7 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
{
"private": true,
"name": "@sepraisal/monorepo",
"description": "Space Engineers Praisal: Blueprint Parser & Analyser",
"scripts": {
"start": "yarn run bootstrap && yarn run build",
"bootstrap": "yarn && lerna bootstrap",
"build": "yarn run tsc -v && yarn run tsc -b tsconfig-src.json",
"clean": "lerna exec --parallel -- yarn run clean",
"lint": "eslint $(git ls-files '*.ts' '*.tsx' '*.js' '*.jsx')",
"lint:fix": "yarn run lint --fix",
"lint:summary": "yarn run lint --format compact | grep '(@' | grep ' - ' | sed -r 's/.* (\\w+ -) .*(\\(@.*)$/\\1 \\2/' | sort | uniq -c | sort -nr",
"reinstall": "yarn run uninstall && yarn run bootstrap",
"test": "jest",
"test:coverage": "yarn run test --coverage",
"uninstall": "lerna clean --yes; rm -rf node_modules",
"watch": "concurrently -p '[{name}]' -n 'TS,JEST' 'yarn run watch:src --preserveWatchOutput' 'yarn run watch:test'",
"watch:src": "tsc -b tsconfig-src.json --watch # --preserveWatchOutput",
"watch:test": "yarn run test --watch"
},
"repository": {
"type": "git",
"url": "www.github.com/Akuukis/spaceengineers-praisal"
},
"keywords": [
"spaceengineers",
"blueprint",
"tool",
"typescript",
"react"
],
"author": "Akuukis",
"license": "GPL-3.0",
"devDependencies": {
"@types/jest": "^25.1.3",
"env-cmd": "^10.1.0",
"eslint": "^7.1.0",
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
"lerna": "^3.20.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"workspaces": [
"workspaces/*"
]
}