-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.52 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.52 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
{
"engines": {
"node": "8.9.1"
},
"name": "Coinspace",
"version": "1.0.0",
"description": "Who needs Coinbase when you've got Coinspace?",
"main": "web.js",
"author": "Derrick Cross, Dillon Lin, Jackie Jou, Nuno Neves",
"license": "ISC",
"scripts": {
"start": "nodemon server/server.js",
"react-dev": "webpack -d --watch",
"postinstall": "webpack -d",
"test": "./node_modules/.bin/mocha ./test/test.js"
},
"dependencies": {
"axios": "^0.17.1",
"babel-cli": "^6.7.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.7.2",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chart.js": "^2.6.0",
"cron": "^1.3.0",
"css-loader": "^0.28.8",
"dotenv": "^4.0.0",
"eslint-config-hackreactor": "github:reactorcore/eslint-config-hackreactor",
"express": "^4.16.2",
"express-favicon": "^2.0.0",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"jquery": "^3.2.1",
"mocha": "^4.1.0",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"nodemon": "^1.14.9",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"path": "^0.12.7",
"pg": "^7.4.1",
"postcss-load-config": "^1.2.0",
"postcss-loader": "^2.0.10",
"react": "^16.2.0",
"react-chartjs-2": "^2.6.4",
"react-delay": "^0.1.0",
"react-dom": "^16.2.0",
"react-password-mask": "^3.3.0",
"react-responsive-modal": "^2.0.0",
"semantic-ui": "^2.2.13",
"semantic-ui-react": "^0.77.2",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"style-loader": "^0.19.1",
"supertest": "^3.0.0",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.7.2",
"bcrypt": "^1.0.3",
"chart.js": "^2.6.0",
"css-loader": "^0.28.8",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"postcss-load-config": "^1.2.0",
"postcss-loader": "^2.0.10",
"react-chartjs-2": "^2.6.4",
"react-delay": "^0.1.0",
"react-password-mask": "^3.3.0",
"semantic-ui-react": "^0.77.2",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
},
"babel": {
"presets": [
"es2015"
]
}
}