forked from kmvan/x-prober
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2 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
{
"name": "x-prober",
"description": "A PHP prober",
"scripts": {
"lang": "node ./build-lang.js",
"dev": "cross-env webpack --display-error-details --progress --colors --watch",
"build": "cross-env webpack --config=prod.webpack.config.js --display-error-details --progress --colors"
},
"browserslist": [
"last 4 version"
],
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-strict-mode": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/core-js": "^2.5.3",
"@types/lodash-es": "^4.17.3",
"@types/node": "^13.7.4",
"@types/query-string": "^6.3.0",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"babel-plugin-styled-components": "^1.10.7",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"lodash-es": "^4.17.15",
"mobx": "^5.15.4",
"mobx-react": "^6.1.8",
"node-libs-browser": "^2.2.1",
"pofile": "^1.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.19",
"ts-loader": "^6.2.1",
"typescript": "^3.8.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-common-shake": "^2.1.0",
"webpack-dev-server": "^3.10.3",
"webpack-log": "^3.0.1"
},
"dependencies": {
"@types/styled-components": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-loader": "^8.0.6",
"caniuse-lite": "^1.0.30001028",
"es6-promise": "^4.2.8",
"eslint-config-prettier": "^6.10.0",
"glob": "^7.1.6",
"polished": "^3.4.4",
"query-string": "^6.11.0",
"styled-components": "^5.0.1",
"typescript-plugin-styled-components": "^1.4.4"
}
}