-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "polypack-potatoe",
"version": "1.0.0",
"description": "Healthy potatoes landing page",
"main": "src/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",
"potatoes",
"landing-page"
],
"author": "hirako2000",
"repository": "https://github.com/hirako2000/polypack-potatoes",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^7.0.0",
"babel-plugin-inferno": "^3.1.0",
"babel-preset-es2015": "^6.22.0",
"compression-webpack-plugin": "^0.4.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"eslint-config-xo": "^0.18.2",
"eslint-config-xo-inferno": "^0.11.1",
"eslint-plugin-inferno": "^6.10.4",
"extract-text-webpack-plugin": "^2.0.0-rc.1",
"file-loader": "^0.11.1",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.28.0",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"style-loader": "^0.17.0",
"url-loader": "^0.5.7",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.4",
"xo": "^0.18.2"
},
"dependencies": {
"basscss": "^8.0.2",
"inferno": "^3.3.1",
"inferno-component": "^3.3.1",
"inferno-shared": "3.1.1",
"smoothscroll": "^0.3.0"
},
"xo": {
"extends": [
"xo/esnext",
"xo-inferno/space"
],
"env": "browser",
"semicolon": false,
"space": 2,
"unicorn/filename-case": 0,
"import/no-extraneous-dependencies": 0
}
}