-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
80 lines (80 loc) · 2.07 KB
/
package.json
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
{
"name": "snippr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon server/index.js & webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-staged": "lint-staged",
"seed": "node server/seed.js"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.js": "eslint",
"*.jsx": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinliu6102/snippr.git"
},
"author": "Team Snippr",
"license": "ISC",
"bugs": {
"url": "https://github.com/kevinliu6102/snippr/issues"
},
"homepage": "https://github.com/kevinliu6102/snippr#readme",
"devDependencies": {
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"lint-staged": "^3.4.1",
"pre-commit": "^1.2.2"
},
"dependencies": {
"auth0-lock": "^10.15.1",
"aws-sdk": "^2.49.0",
"axios": "^0.16.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"history": "^4.6.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"pg": "^6.1.5",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-dropzone": "^3.13.1",
"react-google-maps": "^6.3.0",
"react-loaders": "^2.5.0",
"react-modal": "^1.7.7",
"react-notifications": "^1.3.0",
"react-notify-toast": "^0.1.5",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"react-stripe-checkout": "^2.2.5",
"redux": "^3.6.0",
"redux-promise": "^0.5.3",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"sequelize": "^3.30.4",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"stripe": "^4.18.0",
"superagent": "^3.5.2",
"webpack": "^2.4.1"
}
}