-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "js-boilerplate",
"version": "1.0.0",
"description": "My ES6, SASS boilerplate",
"main": "build.js",
"scripts": {
"dev": "webpack-dev-server --devtool eval --progress --colors --content-base build --hot",
"prod": "webpack -p --config webpack.config.production.js",
"test": "karma start karma.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccorcoveanu/js-boilerplate.git"
},
"author": "Cristi Corcoveanu <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ccorcoveanu/js-boilerplate/issues"
},
"homepage": "https://github.com/ccorcoveanu/js-boilerplate#readme",
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.6.0",
"babel-istanbul-loader": "0.0.1",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"css-loader": "^0.25.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.22.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"loader-utils": "^0.2.12",
"node-sass": "^3.10.0",
"rimraf": "^2.5.0",
"sass-loader": "^4.0.2",
"script-ext-html-webpack-plugin": "^1.3.2",
"style-loader": "^0.13.1",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.16.1"
}
}