-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.5 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
69
70
71
72
{
"name": "correct-frontend-starter",
"version": "0.1.0",
"description": "starter react app with typescript, babel, webpack, HMR",
"author": "Alex Homer",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "yarn run clean-dist && yarn run typecheck-prod && webpack -p --config=webpack/prod.js",
"clean-dist": "rimraf dist/*",
"lint": "eslint \"src/**\"",
"start": "yarn run start-dev",
"start-dev": "webpack-dev-server --config=webpack/dev.js",
"start-prod": "yarn run build && node express.js",
"test": "jest --watch --coverage --config=jest/jest.config.js",
"typecheck-prod": "tsc --project tsconfig.json --noEmit"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"eslint": "^6.6.0",
"eslint-config-airbnb-typescript": "^6.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-formatter-pretty": "^2.1.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"eslint-plugin-unicorn": "^12.1.0",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"jest": "^24.9.0",
"npm": "^6.13.0",
"rimraf": "^3.0.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.7.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@material-ui/core": "^4.6.0",
"@material-ui/styles": "^4.6.0",
"express": "^4.17.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-hot-loader": "^4.12.16"
}
}