-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "webpack-package",
"version": "0.0.1",
"description": "",
"scripts": {
"test": "jest",
"jest": "jest",
"babel-node": "babel-node",
"flow": "flow",
"flow-typed": "flow-typed",
"gulp": "gulp",
"eslint": "eslint",
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server",
"start": "npm run webpack -- --config webpack.config.babel.js"
},
"jest": {
"modulePathIgnorePatterns": [
"__fixtures__"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-boilerplates/webpack-package.git"
},
"author": "Kirill Mokevnin",
"license": "ISC",
"bugs": {
"url": "https://github.com/hexlet-boilerplates/webpack-package/issues"
},
"homepage": "https://github.com/hexlet-boilerplates/webpack-package#readme",
"dependencies": {
"js-beautify": "^1.6.8",
"lodash": "^4",
"vdom-parser": "^1",
"vdom-to-html": "^2.3.1",
"debug": "^3",
"virtual-dom": "^2"
},
"devDependencies": {
"babel-polyfill": "*",
"babel-eslint": "*",
"babel-loader": "*",
"babel-preset-env": "*",
"babel-preset-flow": "*",
"babel-preset-stage-0": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-flowtype": "*",
"eslint-plugin-import": "*",
"flow-bin": "^0.42.0",
"flow-typed": "*",
"html-webpack-plugin": "^2.28.0",
"jest": "^19",
"jquery": "^3",
"webpack": "*",
"webpack-dev-server": "^2.4.2"
}
}