This repository has been archived by the owner on May 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.71 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
94
95
{
"name": "react-boilerplatinum",
"description": "Boilerplate for ReactJS project with hot code reloading",
"homepage": "https://github.com/Kikobeats/react-boilerplatinum",
"version": "1.6.1",
"author": {
"email": "[email protected]",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kikobeats/react-boilerplatinum.git"
},
"bugs": {
"url": "https://github.com/Kikobeats/react-boilerplatinum/issues"
},
"keywords": [
"boilerplate",
"edit",
"hmr",
"hot",
"live",
"react",
"reactjs",
"reload",
"webpack"
],
"dependencies": {
"autoprefixer": "latest",
"babel-core": "latest",
"babel-loader": "latest",
"babel-preset-env": "latest",
"babel-preset-react": "latest",
"compression-webpack-plugin": "latest",
"css-loader": "latest",
"extract-text-webpack-plugin": "latest",
"glob": "latest",
"html-webpack-harddisk-plugin": "latest",
"html-webpack-plugin": "latest",
"node-sass": "latest",
"offline-plugin": "latest",
"optimize-css-assets-webpack-plugin": "latest",
"postcss-focus": "latest",
"postcss-loader": "latest",
"postcss-scss": "latest",
"preload-webpack-plugin": "latest",
"purify-css": "latest",
"purifycss-webpack": "latest",
"react": "latest",
"react-dom": "latest",
"react-hot-loader": "latest",
"sass-loader": "latest",
"style-loader": "latest",
"tachyons-sass": "latest",
"travis-after-all": "latest",
"webpack": "latest",
"webpack-bundle-analyzer": "latest",
"webpack-common-shake": "latest"
},
"devDependencies": {
"babel-eslint": "latest",
"babel-plugin-transform-class-properties": "latest",
"babel-plugin-transform-object-rest-spread": "latest",
"babel-plugin-transform-react-constant-elements": "latest",
"babel-plugin-transform-react-inline-elements": "latest",
"babel-plugin-transform-react-pure-class-to-function": "latest",
"babel-plugin-transform-react-remove-prop-types": "latest",
"browser-sync": "latest",
"browser-sync-webpack-plugin": "latest",
"eslint-plugin-jsx-a11y": "latest",
"standard": "latest",
"webpack-dashboard": "latest",
"webpack-dev-server": "latest"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"build": "NODE_ENV=production webpack --progress --debug --config webpack.config.js",
"dev": "webpack-dashboard -m -- node bin/server",
"lint": "standard",
"test": "echo 'not yet implemented, wanna help?'"
},
"license": "MIT",
"standard": {
"globals": [
"React"
],
"parser": "babel-eslint",
"plugins": [
"jsx-a11y"
]
}
}