-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.17 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.17 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
{
"name": "cryptocracyclient",
"version": "0.0.1",
"description": "Front End client for Cryptocracy",
"main": "./server/server.js",
"scripts": {
"start": "node server/server.js",
"start-watch": "nodemon server/server.js",
"start-webpack": "node_modules/webpack/bin/webpack.js --config webpack.config.js --progress --colors --watch",
"build": "NODE_ENV=production node_modules/webpack/bin/webpack.js --config webpack.config.js --progress --colors",
"start-dev": "node server/server.js & npm run start-webpack",
"start-prod": "NODE_ENV=production node server/server.js",
"test": "mocha ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KN3LL2K/client.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KN3LL2K/client/issues"
},
"babel": {
"presets": [
"react",
"es2015"
]
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"cookie-parser": "^1.4.3",
"css-loader": "^0.26.1",
"d3": "^4.4.0",
"deepstream.io-client-js": "^2.1.1",
"express": "^4.14.0",
"flexboxgrid": "^6.3.1",
"formsy-material-ui": "^0.5.3",
"formsy-react": "^0.19.0",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"material-ui": "^0.16.6",
"materialize-css": "^0.97.8",
"moment": "^2.17.1",
"morgan": "^1.7.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-faux-dom": "^3.0.0",
"react-materialize": "^0.17.7",
"react-router": "^3.0.0",
"react-stockcharts": "^0.6.0",
"react-tap-event-plugin": "^2.0.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0"
},
"devDependencies": {
"babel-preset-stage-3": "^6.17.0",
"chai": "^3.5.0",
"compression-webpack-plugin": "^0.3.2",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"react-hot-loader": "^1.3.1",
"superagent": "^3.1.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0"
},
"homepage": "https://github.com/KN3LL2K/client#readme"
}