-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.36 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
77
78
79
80
81
82
83
84
{
"name": "users",
"version": "0.0.1",
"description": "User page",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development budo src/index.js:bundle.js --live & npm run watch-sass",
"build-dev": "npm run cp-static && NODE_ENV=development browserify src/index.js -o dist/bundle.js",
"build-prod": "npm run cp-static && NODE_ENV=production browserify src/index.js -o dist/bundle.js",
"cp-static": "cp index.html dist/index.html && cp -r assets dist/",
"deploy": "git subtree push --prefix dist origin gh-pages",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"build-sass": "node-sass assets/styles/main.scss assets/styles/main.css",
"watch-sass": "nodemon -e scss -w assets/styles -x 'npm run build-sass'"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
],
[
"envify"
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/MissingMaps/users.git"
},
"author": "Development Seed",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/MissingMaps/users/issues"
},
"homepage": "https://github.com/MissingMaps/users",
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"budo": "^7.1.0",
"clean-css": "3.4.9",
"envify": "^3.4.0",
"express": "^4.13.3",
"node-sass": "^4.5.3",
"nodemon": "1.8.1"
},
"dependencies": {
"@gitterhq/cal-heatmap": "^3.6.1",
"babel": "^5.8.34",
"babel-core": "^5.8.34",
"babel-eslint": "^4.1.6",
"binary-xhr": "0.0.2",
"browserify": "^12.0.1",
"chart.js": "^1.0.2",
"classnames": "^2.2.3",
"es6-promise": "^3.0.2",
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-react": "^3.14.0",
"eslint-plugin-standard": "^1.3.1",
"history": "^1.17.0",
"isomorphic-fetch": "^2.2.0",
"leaflet": "^1.3.1",
"moment": "^2.11.1",
"ramda": "0.19.1",
"react": "^0.14.5",
"react-chartjs": "0.6.0",
"react-doc-meta": "^0.2.0",
"react-dom": "^0.14.5",
"react-leaflet": "^0.10.0",
"react-router": "^1.0.3",
"react-social": "^1.0.4",
"spark-md5": "^2.0.0",
"turf-centroid": "^1.1.3",
"turf-polygon": "^1.0.3"
}
}