-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.19 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
69
70
{
"name": "supportyourlocal",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"engines": {
"node": "11.11.0",
"npm": "6.7.0"
},
"scripts": {
"start": "node dist/index.js",
"dev:start": "npm run build:server && node dist/index.js",
"server": "node node_modules/nodemon/bin/nodemon.js",
"debug": "npm run build && node --inspect-brk dist/index.js",
"client": "npm run start --prefix client",
"build:server": "npm run clean && tsc",
"build:client": "npm run build --prefix client",
"build": "npm run build:server && npm i --prefix client && npm run build:client",
"clean": "rimraf dist",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"lint:server": "tslint --project tsconfig.json --config tslint.json --fix",
"lint:client": "npm run lint:fix --prefix client",
"lint:fix": "npm run lint:server && npm run lint:client",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Kyle Soeltz",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.0",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"typescript-styled-plugin": "^0.14.0"
},
"dependencies": {
"@apollo/react-hooks": "^3.0.0",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@mapbox/mapbox-gl-geocoder": "^4.5.1",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/csvtojson": "^1.1.5",
"@types/dotenv": "^6.1.1",
"@types/express-graphql": "^0.8.0",
"@types/graphql": "^14.2.2",
"@types/lodash": "^4.14.136",
"@types/mapbox-gl": "^1.8.1",
"@types/mongoose": "^5.5.41",
"@types/public-ip": "^3.1.0",
"apollo-boost": "^0.4.3",
"axios": "^0.19.0",
"axios-cache-adapter": "^2.4.1",
"body-parser": "^1.19.0",
"concurrently": "^4.1.1",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dataloader": "^2.0.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"express-http-to-https": "^1.1.4",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"lodash": "^4.17.14",
"mongoose": "^5.7.5",
"public-ip": "^4.0.0",
"rimraf": "^2.6.3"
}
}