forked from nodezoo/nodezoo-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.89 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.89 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nodezoo-web",
"version": "6.2.0",
"description": "Frontend for NodeZoo",
"author": "Richard Rodger",
"contributors": [
"Richard Rodger (https://github.com/rjrodger)",
"Dean McDonnell (https://github.com/mcdonnelldean)",
"Karolina Szczur (https://github.com/thefoxis)",
"Georgette Pincin (https://github.com/Georgette)",
"Vladimir Islamov (https://github.com/vislamov)",
"Mihai Dima (https://github.com/mihaidma)"
],
"main": "./server/start.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rjrodger/nodezoo-web.git"
},
"files": [
"client",
"dist",
"server",
"Dockerfile",
"webpack.config.js"
],
"scripts": {
"test": "istanbul cover _mocha -- test/*test.js --compilers .:test/utils/compiler.js",
"open-coverage": "open ./coverage/lcov-report/index.html",
"lint": "eslint . --ext .js || true",
"copy": "copyfiles -f ./client/assets/img/favicon.png ./dist/img",
"build": "npm run copy & webpack --progress --colors",
"watch": "webpack -w",
"start": "node server/start.js --seneca.options.tag=nodezoo-web --seneca.options.debug.short_logs=true --seneca.log=type:act",
"isolated": "RUN_ISOLATED=true npm run start",
"prepublish": "in-publish && npm run build || not-in-publish"
},
"dependencies": {
"boom": "3.x.x",
"chairo": "2.1.0",
"hapi": "12.0.0",
"history": "1.17.x",
"in-publish": "2.0.0",
"inert": "3.x.x",
"lodash": "3.10.1",
"moment": "2.11.x",
"react": "15.1.x",
"react-copy-to-clipboard": "4.1.x",
"react-dom": "15.0.x",
"react-redux": "4.4.x",
"react-router": "1.0.x",
"redux": "3.0.x",
"redux-logger": "2.3.x",
"redux-simple-router": "1.0.x",
"redux-thunk": "1.0.x",
"seneca": "2.0.0",
"seneca-balance-client": "0.5.x",
"seneca-entity": "0.0.1",
"seneca-mesh": "0.7.0",
"style-loader": "0.13.x",
"superagent": "1.6.x",
"vidi-metrics": "0.1.0",
"vidi-seneca-metrics": "0.2.0",
"classnames": "2.2.x"
},
"devDependencies": {
"babel-core": "6.4.x",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.x",
"babel-plugin-react-transform": "2.0.x",
"babel-plugin-transform-decorators-legacy": "1.x.x",
"babel-plugin-transform-object-rest-spread": "6.3.x",
"babel-preset-es2015": "6.3.x",
"babel-preset-react": "6.3.x",
"babel-preset-stage-0": "6.3.x",
"chai": "3.5.0",
"copyfiles": "0.2.1",
"css-loader": "0.23.x",
"react-addons-test-utils": "15.0.x",
"eslint": "2.11.1",
"eslint-plugin-react": "5.1.1",
"file-loader": "0.8.x",
"istanbul": "1.0.0-alpha.2",
"jsdom": "8.4.0",
"lab": "8.0.2",
"mocha": "2.4.5",
"postcss": "5.0.14",
"postcss-loader": "0.8.0",
"react-addons-test-utils": "15.1.x",
"stylus-loader": "1.4.3",
"url-loader": "0.5.7",
"webpack": "1.12.x",
"mockery": "^1.7.0"
}
}