-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "lambeth-larder",
"version": "1.0.0",
"description": "Info on emergency food.",
"main": "index.js",
"scripts": {
"test":
"NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./server/tests/*.test.js | tap-spec",
"start": "NODE_ENV=production node ./server/server.js",
"server": "nodemon ./server/server.js",
"client": "node start-client.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"postinstall": "cd client && npm i && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caralemony/lambeth-larder.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/caralemony/lambeth-larder/issues"
},
"homepage": "https://github.com/caralemony/lambeth-larder#readme",
"dependencies": {
"airtable": "^0.5.2",
"axios": "^0.17.1",
"concurrently": "^3.5.1",
"env2": "^2.2.0",
"express": "^4.16.2",
"geolib": "^2.0.24",
"istanbul": "^0.4.5",
"leaflet": "^1.3.1",
"nodemon": "^1.14.12",
"react-leaflet": "^1.8.0",
"react-leaflet-control": "^1.4.1",
"url": "^0.11.0"
},
"devDependencies": {
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"engines": {
"node": "9.3.0",
"npm": "5.5.1"
}
}