forked from zouhir/jarvis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.95 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "webpack-jarvis",
"version": "0.1.1",
"description": "A very intelligent webpack dashboard",
"main": "bin/plugin/index.js",
"files": [
"bin"
],
"scripts": {
"precommit": "lint-staged",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config='./src/client/webpack.config.js' --inline --hot --progress",
"prebuild": "rimraf bin && mkdir bin",
"build": "npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production webpack --config='./src/client/webpack.config.js' -p --progress",
"build:server": "cross-env ncp src/plugin bin/plugin",
"test": "jest"
},
"engines": {
"node": ">=6.0.0"
},
"author": "Zouhir",
"license": "MIT",
"peerDependencies": {
"webpack": "*"
},
"dependencies": {
"ansi-to-html": "^0.6.3",
"express": "^4.15.4",
"import-from": "^2.1.0",
"socket.io": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"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-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"copy-webpack-plugin": "^4.2.0",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-serializer-html-string": "^1.0.1",
"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",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"svg-url-loader": "^2.1.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3",
"webpack-messages": "^1.0.0"
},
"lint-staged": {
"*.{js,json,scss}": [
"prettier --write",
"git add"
]
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.js$": "babel-jest"
},
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy",
"^react$": "preact-compat",
"^react-dom$": "preact-compat"
},
"moduleDirectories": [
"node_modules",
"src"
]
}
}