-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "projestions",
"version": "1.0.0",
"description": "projection suggestions",
"main": "dist/server.js",
"repository": {
"type": "git",
"url": "https://github.com/ebrelsford/projestions.git"
},
"scripts": {
"test": "eslint src && jest --coverage --forceExit",
"babel": "babel src/ --presets es2015 --watch --out-dir dist",
"watch": "nodemon --ignore test/ --exec babel-node src/server.js",
"prepush": "npm test"
},
"author": "Eric Brelsford <[email protected]> (http://ebrelsford.github.io/)",
"license": "GPL-3.0",
"dependencies": {
"@turf/buffer": "^4.5.2",
"@turf/combine": "^4.5.2",
"@turf/invariant": "^4.5.2",
"body-parser": "^1.17.2",
"dbgeo": "^0.1.1",
"express": "^4.15.3",
"multer": "^1.3.0",
"pg": "^7.0.0",
"promise": "^7.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.0.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"jest": "^21.0.1",
"nodemon": "^1.9.1"
},
"jest": {
"transform": {}
}
}