This repository was archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "commonspace",
"version": "0.0.1",
"description": "digital collection of gehl public life study data",
"main": "index.js",
"author": "Sidewalk Labs Eng",
"license": "Apache-2.0",
"scripts": {
"admin": "yarn build --config admin.webpack.config.js",
"build": "yarn webpack",
"clean": "rm -rf dist/",
"lint": "tsc --noEmit --skipLibCheck",
"it": "jest -c jest.config.integration.js --runInBand --detectOpenHandles",
"it-old": "jest -c jest.config.integration.js --runInBand",
"pretty": "yarn prettier --config prettier.config.json --write \"src/**/*.tsx\" \"src/**/*.ts\"",
"prettier-check": "yarn prettier --check --config prettier.config.json \"src/**/*.tsx\" \"src/**/*.ts\"",
"server": "yarn build --config server.webpack.config.js",
"test": "jest -c jest.config.test.js",
"watch": "yarn admin --env.TILE_SERVER_URL=http://{s}.tile.osm.org/{z}/{x}/{y}.png --env.CLIENT_ENV=development --watch --mode development"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0-beta.55",
"@types/jest": "^23.3.1",
"@types/passport": "^0.4.6",
"@types/passport-jwt": "^3.0.1",
"@types/passport-local": "^1.0.33",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.0-beta",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^4.5.3",
"firebase-tools": "^7.3.2",
"html-webpack-plugin": "^3.2.0",
"jest": "24",
"prettier": "1.16.4",
"ts-jest": "24",
"typescript": "^3.0.1",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@date-io/moment": "^1.1.0",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.1",
"@turf/turf": "^5.1.6",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/geojson": "^7946.0.4",
"@types/material-ui": "^0.21.5",
"@types/pg": "^7.4.10",
"@types/uuid": "^3.4.3",
"add": "^2.0.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"camelcase-keys": "^4.2.0",
"cookie-parser": "^1.4.3",
"css-loader": "^2.1.0",
"csvtojson": "^2.0.8",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"firebase": "7.0.0",
"firebase-admin": "^8.5.0",
"firebase-functions": "^3.2.0",
"geojson": "^0.5.0",
"helmet": "^3.15.0",
"hsts": "^2.1.0",
"isomorphic-fetch": "^2.2.1",
"json2csv": "^4.3.5",
"jsonwebtoken": "^8.3.0",
"leaflet": "^1.3.4",
"leaflet-draw": "^1.0.3",
"material-ui-pickers": "^2.2.1",
"mobx": "^5.5.0",
"mobx-react": "^5.2.8",
"moment": "^2.22.2",
"nodemailer": "^5.1.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"path-to-regexp": "^3.0.0",
"pg": "^7.5.0",
"pg-error-constants": "^1.0.0",
"pg-native": "^3.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-firebaseui": "^4.0.0",
"react-google-login": "^5.0.0",
"react-iframe": "^1.3.3",
"react-leaflet": "^2.1.2",
"react-leaflet-draw": "^0.19.0",
"react-leaflet-search": "^0.6.0",
"snakecase-keys": "^1.2.0",
"style-loader": "^0.23.1",
"url-parse": "^1.4.4",
"uuid": "^3.3.2",
"yarn": "^1.12.3"
}
}