-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.05 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
{
"name": "building-exploratory",
"version": "1.0.0",
"description": "App for accessing the listed buildings in the borough of Islington",
"main": "server.js",
"engines": {
"node": "8.6.0",
"npm": "5.5.1"
},
"scripts": {
"test": "NODE_PATH=src/ react-scripts test --env=jsdom",
"start": "node server.js",
"start:back": "nodemon server.js",
"start:front": "NODE_PATH=src/ react-scripts start",
"build": "NODE_PATH=src/ react-scripts build",
"eject": "react-scripts eject",
"start:dev": "concurrently \"npm run start:back\" \"npm run start:front\"",
"build-css": "tachyons src/css/app.css > src/index.css --minify",
"watch-css": "chokidar src/css/app.css -c 'npm run build-css'",
"heroku-postbuild": "npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InFact-coop/building-exploratory.git"
},
"keywords": [
"graphql",
"express",
"react"
],
"author": "sohilpandya jessicasalmon",
"license": "ISC",
"bugs": {
"url": "https://github.com/InFact-coop/building-exploratory/issues"
},
"homepage": "https://github.com/InFact-coop/building-exploratory#readme",
"dependencies": {
"apollo-cache-inmemory": "^1.1.1",
"apollo-client": "^2.0.3",
"apollo-client-preset": "^1.0.3",
"apollo-link-http": "^1.2.0",
"chokidar-cli": "^1.2.0",
"core-js": "^2.5.3",
"express": "^4.16.2",
"express-graphql": "^0.6.11",
"graphql": "^0.11.7",
"graphql-tag": "^2.5.0",
"mapbox-gl": "^0.42.2",
"mongoose": "^4.13.2",
"react": "^16.1.1",
"react-apollo": "^2.0.1",
"react-dom": "^16.1.1",
"react-map-gl": ">=3.2.0-alpha.1",
"react-mapbox-gl": "^2.8.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"tabletop": "^1.5.2",
"tachyons": "^4.9.0",
"tachyons-cli": "^1.2.0",
"unfetch": "^3.0.0"
},
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.12.1",
"env2": "^2.2.0"
},
"proxy": "http://localhost:4000"
}