-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "puremvc-webpack-es6-boilerplate",
"version": "1.0.0",
"author": "Gnun Ulikhanyan",
"description": "Webpack ES6 Boilerplate",
"license": "MIT",
"keywords": [
"webpack",
"boilerplate",
"es6",
"babel",
"eslint",
"jest",
"sass"
],
"bugs": {
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": ""
},
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --config conf/webpack.dev.js",
"build": "webpack --env=prod --progress --profile --colors",
"lint": "eslint ./src/**.js",
"coverage": "jest --coverage --config=conf/jest.config.js",
"test": "jest --config=conf/jest.config.js",
"test:watch": "jest --watch"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.0",
"clean-webpack-plugin": "0.1.16",
"css-loader": "^0.28.5",
"eslint": "4.5.0",
"eslint-loader": "1.9.0",
"extract-text-webpack-plugin": "3.0.0",
"html-webpack-plugin": "2.30.1",
"jest": "20.0.4",
"node-sass": "4.5.3",
"sass-loader": "6.0.6",
"style-loader": "^0.18.2",
"webpack": "3.5.5",
"webpack-dev-server": "2.7.1",
"webpack-merge": "4.1.0"
},
"dependencies": {
"@koreez/pure-mvc": "^2.1.2"
}
}