-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "webpack-css-example",
"version": "4.0.0",
"description": "Example repo showing a webpack CSS build",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"lint": "standard",
"test": "standard && webpack --bail"
},
"repository": {
"type": "git",
"url": "https://github.com/bensmithett/webpack-css-example.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bensmithett/webpack-css-example/issues"
},
"homepage": "https://github.com/bensmithett/webpack-css-example",
"dependencies": {
"autoprefixer": "^8.0.0",
"babel-core": "^6.9.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.1.4",
"css-loader": "^0.28.1",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.1.0",
"postcss-loader": "^2.0.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.20.0",
"webpack": "^3.0.0"
},
"devDependencies": {
"standard": "^11.0.0"
}
}