-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.3 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.3 KB
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
{
"name": "react-uikit",
"version": "0.0.1",
"description": "A dev environment for React with UIkit (getuitkit.com)",
"main": "App.js",
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "mitel",
"license": "MIT",
"scripts": {
"watch-client": "webpack --verbose --colors --display-error-details --config webpack-client-dev.config.js && webpack-dev-server --config webpack-client-dev.config.js",
"build-client": "webpack --verbose --colors --display-error-details --config webpack-client.config.js",
"watch-server": "webpack --verbose --colors --display-error-details --watch --config webpack-server-dev.config.js && webpack-dev-server --config webpack-server-dev.config.js",
"build-server": "webpack --verbose --colors --display-error-details --config webpack-server.config.js",
"start-supervisor": "sleep 6; concurrent 'supervisor public/server/server'",
"watch": "concurrent --kill-others 'npm run watch-client' 'npm run watch-server' 'npm run start-supervisor'",
"build": "concurrent 'npm run build-client' 'npm run build-server'"
},
"jscsConfig": {
"preset": "google",
"esprima": "esprima-fb",
"esnext": true,
"maximumLineLength": null,
"disallowMultipleLineBreaks": null,
"validateIndentation": null,
"disallowTrailingWhitespace": null,
"fileExtensions": [
".js",
".jsx"
],
"excludeFiles": [
"public/**",
"node_modules/**",
"bower_components/**"
]
},
"dependencies": {
"events": "^1.0.2",
"flux": "^2.0.1",
"good": "^6.1.2",
"good-console": "^5.0.0",
"good-file": "^5.0.0",
"hapi": "^8.4.0",
"jquery": "^2.1.3",
"react": "^0.13.1",
"react-router": "^0.13.2",
"tv": "^4.1.0"
},
"devDependencies": {
"babel-core": "^5.1.8",
"babel-loader": "^5.0.0",
"babel-runtime": "^5.1.8",
"code": "^1.4.0",
"css-loader": "^0.10.1",
"file-loader": "^0.8.1",
"imports-loader": "^0.6.3",
"json-loader": "^0.5.1",
"lab": "^5.8.0",
"less": "^2.5.0",
"less-loader": "^2.2.0",
"node-sass": "3.0.0-beta.7",
"react-hot-loader": "^1.2.5",
"sass-loader": "^1.0.1",
"script-loader": "^0.6.1",
"style-loader": "^0.10.2",
"url-loader": "^0.5.5",
"webpack": "^1.8.4",
"webpack-dev-server": "^1.8.0"
}
}