-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "spock-monorepo",
"private": true,
"license": "AGPL-3.0-or-later",
"engines": {
"yarn": ">=1.15.2"
},
"scripts": {
"format": "wsrun -sm -c format",
"format:fix": "wsrun -sm -c format:fix",
"lint": "wsrun -sm -c lint",
"lint:fix": "wsrun -sm -c lint:fix",
"typecheck": "wsrun -sm -c typecheck",
"build": "tsc --build --verbose",
"build:watch": "yarn build --watch",
"clean": "wsrun -c clean",
"test": "wsrun -sm -c test",
"test:e2e": "wsrun -sm -c test:e2e",
"test:fix": "yarn lint:fix && yarn format:fix && yarn test && yarn typecheck"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"wsrun": "^5.2.0",
"eslint": "^6.8.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint-config-typestrict": "^1.0.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unused-imports": "^0.1.2"
}
}