-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.88 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
{
"name": "reactflask",
"version": "0.1.0",
"private": true,
"homepage": ".",
"entry": "./templates/public/index.tsx",
"dependencies": {
"bootstrap": "^4.3.1",
"ignore-styles": "^5.0.1",
"parcel-bundler": "^1.12.4",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"typescript": "^3.7.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@babel/register": "^7.7.7",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"@types/react-router-dom": "^5.1.3",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.0-beta.1",
"css-loader": "^3.4.2",
"eslint-config-react-app": "^5.0.2",
"file-loader": "^5.0.2",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"react-dev-utils": "^9.1.0",
"resolve-url-loader": "^3.1.1",
"sass": "1.23.0",
"sass-loader": "^8.0.1",
"style-loader": "^1.1.2",
"ts-loader": "^6.2.1",
"typescript": "3.3.3",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpack-uglify-harmony-plugin": "^1.0.0"
},
"scripts": {
"start:python": "python server.py",
"watch:webpack": "webpack --progress -d --config webpack.dev.js --watch",
"build:webpack": "webpack --config webpack.dev.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}