-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 2.21 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
{
"name": "to-fix-backend",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"prestart": "npm run db:migrate",
"precommit": "lint-staged",
"test": "npm run lint && NODE_ENV=test tape test/*.test.js",
"lint": "eslint .",
"format": "prettier --single-quote --write \"{,test/**/}*.{js,json}\"",
"api-docs": "documentation readme ./routes -f md --readme-file API.md --section Endpoints --shallow",
"setup-database": "node bin/setup-database.js",
"sequelize": "node node_modules/.bin/sequelize --config sequelize-config.js",
"migration:create": "sequelize migration:create --name ",
"db:migrate": "npm run sequelize db:migrate",
"db:migrate:undo": "npm run sequelize db:migrate:undo"
},
"author": "Mapbox",
"license": "BSD",
"dependencies": {
"@mapbox/geojsonhint": "^2.0.1",
"@mapbox/tilebelt": "^1.0.1",
"@mapbox/to-fix-validate": "0.1.0",
"body-parser": "^1.18.2",
"connect-session-sequelize": "^5.0.0",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.15.5",
"express-session": "^1.15.6",
"husky": "^0.14.3",
"jwt-simple": "^0.5.1",
"lint-staged": "^4.2.3",
"lodash": "^4.17.4",
"logform": "^1.2.1",
"mapbox-data-team": "^1.4.11",
"mapbox-error": "^2.2.0",
"memory-cache": "^0.2.0",
"moment": "^2.21.0",
"oauth": "^0.9.15",
"ohauth": "^1.0.0",
"p-map": "^1.2.0",
"pg": "^7.3.0",
"pg-hstore": "^2.3.2",
"prettier": "^1.7.0",
"request": "^2.83.0",
"sequelize": "^4.15.0",
"sequelize-cli": "^3.0.0",
"winston": "^3.0.0-rc1",
"winston-firetruck": "0.0.5",
"winston-transport": "^3.0.1",
"xml2json": "^0.11.0"
},
"engines": {
"node": ">=6.11.x"
},
"devDependencies": {
"@turf/random": "^4.7.3",
"documentation": "5.3.1",
"eslint": "^2.8.0",
"proxyquire": "^1.8.0",
"sinon": "^4.0.1",
"supertest": "^3.0.0",
"tap-colorize": "^1.2.0",
"tape": "^4.6.2"
},
"lint-staged": {
"*.json": [
"prettier --single-quote --write",
"git add"
],
"*.js": [
"eslint .",
"prettier --single-quote --write",
"npm run api-docs",
"git add"
]
}
}