This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.25 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
66
67
68
{
"name": "coderscamp",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"yarn": "3.0.2",
"node": "14.x"
},
"license": "GPL-3.0-only",
"homepage": "https://github.com/CodersCrew/coderscamp#readme",
"bugs": "https://github.com/CodersCrew/coderscamp/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/CodersCrew/coderscamp.git"
},
"scripts": {
"w": "ts-node scripts/w.ts",
"bootstrap": "yarn && yarn generate && yarn w api db:sync",
"clean": "ts-node scripts/clean.ts",
"generate": "yarn workspaces foreach -vpi run generate",
"typecheck": "yarn workspaces foreach -vpi run typecheck",
"test": "yarn workspaces foreach -vpi run test",
"eslint": "eslint --ignore-path .gitignore --ext js,ts,tsx",
"lint": "yarn eslint \"**/*.{js,ts,tsx}\"",
"lint:fix": "yarn lint --fix",
"lint:perf": "cross-env TIMING=50 yarn lint",
"lint:changed": "ts-node scripts/lint-changed.ts",
"heroku-postbuild": "yarn generate && concurrently \"yarn w api build\" \"yarn w panel build\""
},
"devDependencies": {
"@coderscamp/eslint-plugin": "0.0.1",
"@types/jest": "27.0.2",
"@types/shelljs": "0.8.9",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"concurrently": "6.3.0",
"cross-env": "7.0.3",
"del": "6.0.0",
"eslint": "8.1.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "14.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-react": "1.1.7",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-jest-dom": "3.9.2",
"eslint-plugin-jest-formatting": "3.0.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-testing-library": "4.12.4",
"jest": "27.3.1",
"jest-transform-stub": "2.0.0",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"serve": "12.0.1",
"shelljs": "0.8.4",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"typescript": "4.4.4"
},
"packageManager": "yarn@3.0.2"
}