-
Notifications
You must be signed in to change notification settings - Fork 191
/
package.json
84 lines (84 loc) · 2.5 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
{
"name": "webpack-jarvis",
"version": "0.3.2",
"description": "A very intelligent webpack dashboard",
"main": "dist/server/index.js",
"files": ["dist"],
"scripts": {
"precommit": "lint-staged",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"prebuild": "rm -rf dist",
"copy:server": "ncp src/server dist/server",
"copy:assets":
"ncp src/index.html dist/index.html && ncp src/assets dist/assets",
"build":
"webpack --env.production --config config/webpack && npm run copy:server && npm run copy:assets",
"watch": "JARVIS_ENV=development webpack --watch --config config/webpack"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zouhir/jarvis.git"
},
"license": "MIT",
"author": {
"email": "zouhir@zouhir.org",
"name": "Zouhir",
"url": "https://zouhir.org"
},
"peerDependencies": {
"webpack": "*"
},
"dependencies": {
"ansi-to-html": "^0.6.3",
"import-from": "^2.1.0",
"obj-str": "^1.0.0",
"parse-authors": "^0.2.4",
"polka": "^0.3.1",
"react-favicon": "^0.0.11",
"serve-static": "^1.13.1",
"socket.io": "^2.0.3",
"url-loader": "^0.6.2"
},
"devDependencies": {
"all-contributors-cli": "^4.10.1",
"autoprefixer": "^7.1.2",
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.6",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.5",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"ncp": "^2.0.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"preact": "^8.2.1",
"preact-compat": "^3.16.0",
"preact-habitat": "^2.2.3",
"preact-markup": "^1.6.0",
"prettier": "^1.10.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"svg-url-loader": "^2.1.1",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^2.0.4",
"webpack-hot-middleware": "^2.21.0"
},
"lint-staged": {
"src/**/*.{js,json,scss}": ["prettier --write", "git add"]
}
}