-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.26 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.26 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
{
"name": "admin",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start-prod": "NODE_ENV=prod node ./src/index.js",
"lint": "eslint ./src/ ./public/scripts/",
"mocha": "mocha ./test --recursive",
"test": "npm run mocha",
"start-watch": "nodemon ./src/index.js",
"start-webpack": "node_modules/webpack/bin/webpack.js --config webpack.config.js --progress --colors --watch",
"build": "node_modules/webpack/bin/webpack.js --config webpack.config.js --progress --colors",
"start-dev": "node ./src/index.js & PORT=3005 npm run start-webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CryptocracyExchange/admin.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/CryptocracyExchange/admin/issues"
},
"homepage": "https://github.com/CryptocracyExchange/admin#readme",
"babel": {
"presets": [
"react",
"es2015"
]
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.8.0",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"react-hot-loader": "^1.3.1",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0"
},
"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",
"bcrypt-nodejs": "0.0.3",
"big.js": "^3.1.3",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"cookie-parser": "^1.4.3",
"css-loader": "^0.26.1",
"deepstream.io-client-js": "^2.1.1",
"deepstream.io-provider-search-rethinkdb": "^2.0.0",
"eslint": "^3.13.1",
"express": "^4.14.0",
"lodash": "^4.17.4",
"materialize-css": "^0.97.8",
"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",
"rethinkdb": "^2.3.3",
"shelljs": "^0.7.6",
"style-loader": "^0.13.1",
"superagent": "^3.3.2",
"webpack": "^1.14.0"
}
}