-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.91 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
{
"name": "barback",
"version": "1.0.0",
"description": "",
"scripts": {
"clear:media": "rm -rf dist/images",
"copy:media": "cp -R src/images dist/images",
"dev": "parcel src/index.html & npm run server-dev",
"lint": "eslint './src/components/**/*.jsx' database server",
"postinstall": "parcel build src/index.html",
"start": "node server/server.js",
"server-dev": "nodemon --inspect --ignore node_modules server/server.js",
"db:setup": "node database/seed.js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumptingeneric/barback.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/The-Goonies/barback/issues"
},
"engines": {
"node": "8.11.3"
},
"homepage": "https://goonies-barback.herokuapp.com",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-styled-components": "^1.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"nodemon": "^1.18.4",
"parcel-bundler": "^1.9.7"
},
"dependencies": {
"@reach/router": "^1.1.1",
"api-ai-javascript": "^2.0.0-beta.21",
"axios": "^0.18.0",
"bcrypt": "^3.0.1",
"body-parser": "^1.18.3",
"dot-env": "0.0.1",
"express": "^4.16.3",
"lodash": "^4.17.11",
"mysql2": "^1.6.1",
"pg": "^7.4.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-rating": "^1.4.0",
"react-swipeable": "^4.3.0",
"recharts": "^1.2.0",
"sequelize": "^4.38.0",
"styled-components": "^3.4.6"
}
}