-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.09 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "nervos-web",
"version": "0.1.0",
"description": "NervOS Web",
"main": "index.js",
"homepage": "https://gyongyon.github.io/nervos-web",
"repository": "https://github.com/gyongyon/nervos-web",
"author": "Keith <[email protected]>",
"license": "MIT",
"scripts": {
"start": "clear && webpack-dev-server --config config/webpack.config.dev.js",
"start:d": "clear && webpack-dashboard -- webpack-dev-server --config config/webpack.config.dev.js",
"build": "yarn run build:local",
"build:local": "rimraf dist && webpack --config config/webpack.config.prod.js",
"build:test": "rimraf dist && yarn install && webpack --config config/webpack.config.prod.js",
"build:prod": "rimraf dist && yarn install && webpack --config config/webpack.config.prod.js",
"dll": "rimraf lib && webpack --config ./config/webpack.config.dll.js",
"precommit": "lint-staged",
"predeploy": "yarn run build",
"deploy": "gh-pages -d dist"
},
"lint-staged": {
"src/**/*.{tsx,ts}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@reactivex/rxjs": "^5.5.6",
"@types/i18n": "^0.8.3",
"@types/i18next": "^8.4.3",
"@types/react-i18next": "^7.3.1",
"i18next": "^10.3.0",
"i18next-browser-languagedetector": "^2.1.0",
"i18next-xhr-backend": "^1.5.1",
"normalize.css": "^7.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-i18next": "^7.3.4",
"react-router-dom": "^4.2.2",
"styled-components": "^3.1.4"
},
"devDependencies": {
"@types/node": "^9.4.0",
"@types/react": "^16.0.35",
"@types/react-dom": "^16.0.3",
"@types/react-loadable": "^5.3.1",
"@types/react-router-dom": "^4.2.3",
"@types/webpack": "^3.8.4",
"@types/webpack-dev-server": "^2.9.2",
"@types/webpack-env": "^1.13.4",
"autoprefixer": "^7.2.5",
"babel-loader": "^7.1.2",
"bundle-loader": "^0.5.5",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-typescript": "^0.8.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"node-babel": "^0.1.2",
"node-sass": "^4.7.2",
"postcss": "^6.0.16",
"postcss-loader": "^2.0.10",
"prettier": "^1.10.2",
"prop-types": "^15.6.0",
"react-hot-loader": "^3.1.3",
"resolve-url-loader": "^2.2.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.1",
"sw-precache-webpack-plugin": "^0.11.4",
"ts-loader": "^3.3.1",
"typescript": "^2.6.2",
"typescript-eslint-parser": "^12.0.0",
"uglifyjs-webpack-plugin": "^1.1.8",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dashboard": "^1.1.1",
"webpack-dev-server": "^2.11.1",
"webpack-manifest-plugin": "^1.3.2",
"webpack-merge": "^4.1.1"
}
}