-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.89 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "jokenpo",
"version": "1.0.0",
"description": "Rock, paper, scissors",
"repository": "[email protected]:gerardo-junior/jokenpo.git",
"author": "Gerardo Junior <[email protected]>",
"license": "GPL-3.0",
"private": false,
"scripts": {
"clean": "rimraf dist",
"pug-lint": "pug-lint src/",
"sass-lint": "sass-lint -c .sass-lint.yml 'src/scss/**/*.scss' -v -q",
"eslint": "eslint src/",
"lint": "npm run pug-lint && npm run sass-lint && npm run eslint",
"test": "npm run lint && echo \"\nError: no test specified... \n\"",
"pre-commit": "npm run test && npm run clean",
"build": "npm run clean && node build/build.js",
"start": "npm run build && http-server dist",
"dev": "node build/dev-server.js"
},
"pre-commit": [
"pre-commit"
],
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.3.0",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.4",
"http-server": "^0.11.1",
"node-sass": "^4.6.1",
"opn": "^5.1.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.3.0",
"postcss-loader": "^2.0.8",
"pre-commit": "^1.2.2",
"pug": "^2.0.0-rc.4",
"pug-lint": "^2.5.0",
"pug-loader": "^2.3.0",
"rimraf": "^2.6.2",
"sass-lint": "^1.12.1",
"sass-loader": "^6.0.6",
"semver": "^5.4.1",
"shelljs": "^0.7.8",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"webpack-merge": "^4.1.1"
},
"engines": {
"node": ">= 8.1.3",
"npm": ">= 5.0.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"normalize.css": "^8.0.0"
}
}