-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
65 lines (65 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "build-tracker",
"version": "1.0.0",
"description": "Monorepo for @build-tracker/* packages",
"repository": "[email protected]:paularmstrong/build-tracker.git",
"author": "Paul Armstrong <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"src/*",
"plugins/*",
"./docs"
],
"nohoist": [
"**/html-minifier-terser"
]
},
"scripts": {
"dev": "ts-node src/server/src/index.ts run -c ./config/fixtures.js",
"dev:large": "ts-node src/server/src/index.ts run -c ./config/fixtures-large.js",
"dev:setup": "ts-node src/server/src/index.ts setup",
"dev:seed": "ts-node src/server/src/index.ts seed",
"dev:mariadb": "ts-node src/server/src/index.ts run -c ./config/mariadb.js",
"dev:mysql": "ts-node src/server/src/index.ts run -c ./config/mysql.js",
"dev:postgres": "ts-node src/server/src/index.ts run -c ./config/postgres.js",
"docs": "cd docs && yarn start",
"prebuild": "yarnpkg clean",
"build": "lerna run build --stream --parallel --ignore @build-tracker/docs",
"build:all": "lerna run build --stream --parallel",
"clean": "lerna run clean --stream --parallel",
"ci": "run-s lint:ci tsc test:ci",
"lint": "yarn lint:cmd --fix",
"lint:ci": "yarn lint:cmd",
"lint:cmd": "eslint . --ext '.ts,.tsx,.js,.json,.md,.snap' --cache",
"test": "yarn test:cmd",
"test:ci": "yarn test:cmd --ci",
"test:cmd": "jest",
"tsc": "tsc -p ./tsconfig.test.json"
},
"devDependencies": {
"@types/jest": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-jest": "^23.0.0",
"eslint-plugin-json": "^2.0.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"husky": "^2.7.0",
"jest": "^25.0.0",
"lerna": "^3.14.1",
"lint-staged": "^9.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.0",
"rimraf": "^2.6.3",
"ts-jest": "^25.0.0",
"ts-node": "^8.0.0",
"typescript": "^3.7.0"
}
}