-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.66 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
56
57
58
59
{
"name": "zero",
"version": "0.1.0",
"description": "Boilerplate for Zeplin extension projects based on Webpack",
"main": "index.js",
"lint-staged": {
"src/**/*.{js,json}": [
"prettier --config .prettierrc --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"start": "webpack --config ./config/webpack.dev.js --progress --color",
"build": "webpack --config ./config/webpack.prod.js",
"test:lint": "eslint --ext=js .",
"test:unit": "echo \"Error: no test specified\" && exit 1",
"test": "run-s test:**"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-preset-env": "^1.6.1",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.4.2",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-friendly-formatter": "3.0.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.5.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"react-dev-utils": "^5.0.0",
"webpack": "3.8.1",
"webpack-merge": "4.1.2"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/baybara-pavel/zero.git"
},
"author": "Pavel Baybara",
"license": "MIT",
"bugs": {
"url": "https://github.com/baybara-pavel/zero/issues"
},
"homepage": "https://github.com/baybara-pavel/zero#readme",
"babel": {
"presets": [
"env"
]
}
}