-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "lookup-server",
"version": "0.0.1",
"private": true,
"dependencies": {
"babel-core": "6.14.0",
"express": "4.13.3",
"firebase": "^4.8.1",
"firebase-admin": "^5.6.0",
"fs": "0.0.2",
"google-auth-library": "^0.12.0",
"googleapis": "^23.0.0",
"gtfs-realtime-bindings": "0.0.4",
"moment": "^2.20.1",
"node-cron": "^1.2.1",
"path": "^0.12.7",
"react-moment": "^0.6.8",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"request": "^2.83.0",
"sql.js": "0.3.2",
"unsplash-js": "^4.8.0",
"weather-underground-icons": "^1.0.0"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server.js",
"client": "node start-client.js",
"dev": "echo \"This command has been deprecated. Use 'npm start'\" && exit 1",
"lint": "eslint ."
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"concurrently": "3.1.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.9.0",
"jshint": "^2.9.5"
}
}