-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 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
{
"name": "react-webpack-boilerplate",
"version": "0.0.0",
"description": "Simple Page app boilerplate using webpack and ReactJS",
"main": "scripts/index.js",
"scripts": {
"build": "webpack",
"watch": "webpack -d --watch",
"dev": "webpack-dev-server -d",
"start": "webpack-dev-server -d",
"production": "NODE_ENV=production webpack -p",
"test": "eslint . && webpack -d && webpack -p"
},
"keywords": [
"boilerplate",
"webpack",
"babel",
"sass",
"react"
],
"contributors": "Nihey Takizawa <nihey.takizawa@gmail.com>",
"author": "Bruno Orlandi <brorlandi@gmail.com>",
"license": "MIT",
"dependencies": {
"@sentry/browser": "^5.6.2",
"bowser": "^2.5.3",
"jquery": "^3.1.0",
"node-libs-browser": "^1.0.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"sweetalert2": "^5.3.8"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"config": "^1.16.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.23.0",
"eslint": "^1.6.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.4",
"html-loader": "^0.4.3",
"img-loader": "^1.1.0",
"indexhtml-webpack-plugin": "^0.1.9",
"json-loader": "^0.5.2",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"node-sass": "^3.13.1",
"postcss": "^5.2.0",
"postcss-cli": "^2.6.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.13.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-livereload-plugin": "^0.8.1"
}
}