-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build-js": "wsrun --stages --exclude giterm-site --exclude-missing build",
"dev": "wsrun --exclude-missing dev",
"lint": "eslint .",
"test": "jest",
"test:dev": "yarn run test --watch",
"e2e": "wsrun -p giterm-e2e -c e2e",
"clean": "rimraf **/dist/ **/build/ **/node_modules/"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.4",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.175",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-redux-saga": "^1.1.3",
"jest": "^27.1.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.1",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"wsrun": "^5.2.1"
}
}