-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.62 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
{
"name": "shindig",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint src",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --exit",
"eject": "react-scripts eject"
},
"dependencies": {
"body-parser": "^1.18.3",
"eslint-config-prettier": "^2.10.0",
"express": "^4.16.4",
"firebase": "^4.13.1",
"knex": "^0.13.0",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.5",
"pg": "^7.8.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-google-maps": "^9.4.5",
"react-router": "^4.3.1",
"react-scripts": "^1.0.14",
"recompose": "^0.26.0"
},
"description": "This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).",
"main": "index.js",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mocha": "^4.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackmallahan/shindig.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jackmallahan/shindig/issues"
},
"homepage": "https://github.com/jackmallahan/shindig#readme"
}