forked from two-and-a-half-devs/lets-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "lets-go",
"version": "0.0.1",
"description": "App that brings you new adventures",
"main": "index.js",
"scripts": {
"build": "webpack -w --config webpack.config.js",
"start": "nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/two-and-a-half-devs/lets-go.git"
},
"author": "Jake, Adrian, Brendan",
"license": "MIT",
"bugs": {
"url": "https://github.com/two-and-a-half-devs/lets-go/issues"
},
"homepage": "https://github.com/two-and-a-half-devs/lets-go#readme",
"dependencies": {
"axios": "^0.17.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"mysql": "^2.15.0",
"mysql2": "^1.4.2",
"pg": "^7.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sequelize": "^4.22.5"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"file-loader": "^1.1.5",
"nodemon": "^1.11.0",
"url-loader": "^0.6.2",
"webpack": "^2.4.1"
}
}