-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 1.95 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
71
72
73
74
75
76
{
"name": "leaderboards",
"version": "0.0.1",
"description": "Leaderboard page",
"main": "index.js",
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"deploy": "gh-pages -d build -b gh-pages",
"lint": "eslint .",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/MissingMaps/leaderboards.git"
},
"author": "Development Seed",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/MissingMaps/leaderboards/issues"
},
"homepage": "http://missingmaps.org/leaderboards",
"babel": {
"presets": [
[
"env",
{
"modules": false,
"useBuiltIns": true
}
],
"react-app"
]
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"eslint": "^3.19.0",
"eslint-plugin-react-app": "^1.0.2",
"git-exec-and-restage": "^1.0.1",
"husky": "^0.14.3",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.1",
"prettier": "^1.7.2",
"react-scripts": "^1.0.14"
},
"dependencies": {
"@turf/bbox": "^4.7.3",
"@turf/helpers": "^5.0.0-alpha",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.3.0",
"chance": "^1.0.11",
"classnames": "^2.2.3",
"create-react-class": "^15.6.2",
"fixed-data-table-2": "^0.8.1",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.0",
"leaflet": "^1.2.0",
"lint-staged": "^4.2.3",
"lodash": "^4.0.1",
"moment": "^2.11.2",
"ramda": "^0.24.1",
"react": "^16.0.0",
"react-autosuggest": "^9.3.2",
"react-dom": "^16.0.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2"
},
"lint-staged": {
"*.js": [
"git-exec-and-restage prettier --write --"
]
}
}