-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.77 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
60
61
62
63
64
65
66
67
{
"name": "polypack",
"version": "1.0.1",
"description": "Webpack skeleton",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"prod": "cross-env NODE_ENV=production webpack-dev-server --env.prod=true",
"build": "cross-env NODE_ENV=production webpack --env.prod=true",
"test": "xo ./src/**/*.js"
},
"keywords": [
"webpack"
],
"author": "hirako2000",
"repository": "https://github.com/hirako2000/polypack",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-inferno": "^3.1.0",
"babel-preset-es2015": "^6.22.0",
"compression-webpack-plugin": "^0.4.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.4",
"eslint-config-xo": "^0.18.2",
"eslint-config-xo-inferno": "^0.11.1",
"eslint-plugin-inferno": "^6.10.4",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.29.0",
"less": "^2.7.2",
"less-loader": "^4.1.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0",
"xo": "^0.18.2"
},
"dependencies": {
"basscss": "^8.0.4",
"fecha": "^2.3.3",
"furtive": "^2.4.0",
"inferno": "^3.3.1",
"inferno-component": "^3.3.1",
"inferno-redux": "^3.3.1",
"inferno-router": "^3.3.1",
"inferno-shared": "^3.1.1",
"lodash": "^4.17.10",
"mincss-modules": "^2.0.0",
"netflixroulette-js": "0.0.1",
"purecss": "^1.0.0",
"redux": "^3.6.0"
},
"xo": {
"extends": [
"xo/esnext",
"xo-inferno/space"
],
"env": "browser",
"semicolon": false,
"space": 2,
"unicorn/filename-case": 0,
"import/no-extraneous-dependencies": 0
}
}