-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.58 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
{
"name": "webpack5-babel-typescript-react",
"version": "0.0.1",
"license": "MIT",
"author": "Damian Pieczynski <[email protected]>",
"scripts": {
"cleanCache": "rm -rf ./node_modules/.cache/webpack",
"clean": "rm -rf ./dist && yarn run cleanCache",
"dev": "run-p dev:*",
"dev:webpack": "webpack-dev-server --mode development --content-base ./site",
"dev:ts": "tsc --watch --preserveWatchOutput",
"test": "jest",
"build": "yarn run clean && yarn run lint && tsc && yarn run test && webpack --mode production",
"prettier": "prettier --write '**/*.{ts,tsx,js,json,css}'",
"lint": "eslint . --ext .js,.ts,.tsx"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/jest": "^23.3.13",
"@types/react": "^16.7.22",
"@types/react-dom": "^16.0.11",
"@typescript-eslint/eslint-plugin": "^1.1.1",
"@typescript-eslint/parser": "^1.1.1",
"babel-loader": "^8.0.5",
"eslint": "^5.12.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^0.0.0",
"jest": "^24.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^3.3.0-rc",
"webpack": "5.0.0-alpha.9",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"react": "16.8.0-alpha.1",
"react-dom": "16.8.0-alpha.1"
}
}