-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.33 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
{
"private": true,
"browserslist": "defaults",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"prettier:check": "prettier --check --ignore-path .gitignore .",
"prettier:write": "prettier --write --ignore-path .gitignore .",
"dev": "yarn run build:tsc && npm-run-all -p build:tsc:watch dev:start",
"dev:start": "wsrun --exclude-missing --stages dev",
"build": "npm-run-all build:tsc build:other",
"build:tsc": "tsc --build tsconfig.json",
"build:other": "wsrun --exclude-missing --stages build",
"build:tsc:watch": "tsc --build tsconfig.json --watch"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@types/jest": "^26.0.20",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-runner-eslint": "^0.10.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"whatwg-fetch": "^3.5.0",
"wsrun": "^5.2.4"
}
}