-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.16 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
{
"name": "scrubd",
"version": "1.0.0",
"description": "Hack Reactor greenfield project",
"main": "index.js",
"scripts": {
"postinstall": "webpack -p",
"start": "NODE_ENV=production node server/server.js",
"test": "mocha ./spec",
"dev": "nodemon ./server/server.js & webpack -w",
"data": "mysql.server start && mysql -u root < ./database/schema.sql && node ./database/models.js && node ./database/models.js && node ./database/sampleData.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Scrubd/scrubd.git"
},
"author": "Barton Young, Joseph Luk, Marc Maniez",
"license": "ISC",
"bugs": {
"url": "https://github.com/MarcManiez/scrubd/issues"
},
"homepage": "https://github.com/MarcManiez/scrubd#readme",
"dependencies": {
"@vimeo/player": "^2.0.1",
"axios": "^0.15.3",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.16.0",
"body-parser": "^1.16.0",
"bootstrap": "^3.3.7",
"css-loader": "^0.26.1",
"express": "^4.14.0",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.26.0",
"install": "^0.8.4",
"jquery": "^3.1.1",
"jwt-simple": "^0.5.1",
"moment": "^2.17.1",
"morgan": "^1.7.0",
"mysql": "^2.12.0",
"npm": "^4.1.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-emoji": "^0.4.4",
"react-emojione": "^2.0.0",
"react-emojione2": "^2.2.18",
"react-redux": "^5.0.2",
"react-scroll": "^1.4.5",
"recharts": "^0.20.5",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.2.0",
"sequelize": "^3.29.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"valid-url": "^1.0.9",
"webpack": "^1.14.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-watch": "^2.0.5",
"chai": "^3.5.0",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0"
},
"engines": {
"node": "6.9.1"
}
}