-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 978 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 978 Bytes
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
{
"name": "code-test",
"version": "0.0.1",
"description": "code test for Ogilvy",
"main": "webpack.config.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.js --content-base src/ --port 3000",
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "./node_modules/.bin/webpack --config webpack.config.js",
"watch": "./node_modules/.bin/webpack --config webpack.config.js --watch"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"css-loader": "^0.21.0",
"es6-promise": "^3.0.2",
"node-sass": "^3.3.3",
"postcss-loader": "^0.7.0",
"sass-loader": "^3.0.0",
"style-loader": "^0.13.0",
"stylelint-selector-bem-pattern": "^1.0.0",
"stylelint-webpack-plugin": "^0.2.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"extract-text-webpack-plugin": "^1.0.1"
}
}