-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.16 KB
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": "react-typescript-boilerplate",
"version": "1.0.0",
"main": "index.js",
"author": "Yusuke Momii",
"license": "MIT",
"scripts": {
"eslint": "eslint -c ./.eslintrc.js 'src/**/*.{ts,tsx}'",
"lintcss": "stylelint \"src/css/**/*.scss\"",
"lintcss:fix": "yarn lintcss --fix",
"start": "NODE_ENV='development' webpack-dev-server --config webpack.config",
"build": "NODE_ENV='production' webpack --config webpack.config"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@types/prop-types": "^15.7.3",
"@types/webpack": "^4.39.1",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.4.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.3.0",
"favicons-webpack-plugin": "^1.0.2",
"fibers": "^4.0.1",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"react-hot-loader": "^4.12.18",
"sass": "^1.23.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"stylelint": "^11.0.0",
"stylelint-config-recess-order": "^2.0.3",
"stylelint-config-recommended-scss": "^4.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.11.1",
"stylelint-webpack-plugin": "^1.0.1",
"typescript": "^3.6.3",
"url-loader": "^2.2.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.8.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@hot-loader/react-dom": "^16.11.0",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"clsx": "^1.1.0",
"core-js": "^3.4.5",
"immer": "^4.0.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-router-dom": "^5.1.2",
"ress": "^2.0.4"
}
}