-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.34 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "inclusive-harvard-map",
"version": "0.0.1",
"description": "A mapping application for resources at Harvard",
"main": "src/index.js",
"module": "src/main.js",
"scripts": {
"build": "rm -rf ./src/client/build/*[^.gitignore] && env NODE_ENV=production webpack --config ./src/client/config/webpack.prod.js",
"coveralls": "cat ./config/coverage/lcov.info | coveralls",
"docs": "jsdoc -c ./config/jsdoc.json",
"lint": "eslint src || true",
"test": "env NODE_ENV=testing jest -c ./config/jest.config.js",
"test:watch": "env NODE_ENV=testing jest --watch -c ./config/jest.config.js || true",
"test:ci": "env NODE_ENV=testing jest --runInBand --detectOpenHandles --forceExit -c ./config/jest.config.js || true",
"serve": "env NODE_ENV=production node ./src/server/index.js",
"start:prod": "env NODE_ENV=production run-s build serve",
"start:client": "webpack-dev-server --config ./src/client/config/webpack.dev.js",
"start:server": "nodemon ./src/server/index.js",
"travis": "run-s lint test:ci coveralls docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonseitz/inclusive-harvard-map.git"
},
"author": "Jonathan Seitz",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/jonseitz/inclusive-harvard-map/issues"
},
"homepage": "https://github.com/jonseitz/inclusive-harvard-map#readme",
"devDependencies": {
"@babel/preset-env": "^7.1.6",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"dxf": "^3.3.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"jest-environment-node": "^23.4.0",
"jsdoc": "^3.5.5",
"mongodb": "^3.1.10",
"mongodb-memory-server": "^2.7.3",
"nodemon": "^1.18.6",
"prettier": "^1.15.2",
"sinon": "^7.1.1",
"supertest": "^3.3.0",
"tern": "^0.23.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^3.6.0",
"@material-ui/icons": "^3.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"classnames": "^2.2.6",
"compression": "^1.7.3",
"css-loader": "^1.0.1",
"dotenv": "^6.1.0",
"esm": "^3.0.84",
"express": "^4.16.4",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"leaflet": "^1.3.4",
"leaflet-routing-machine": "^3.2.12",
"lodash.clonedeep": "^4.5.0",
"mongoose": "^5.3.13",
"morgan": "^1.9.1",
"npm-run-all": "^4.1.5",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.12",
"react-leaflet": "^2.1.2",
"react-markdown": "^4.0.4",
"react-svg": "^7.2.2",
"style-loader": "^0.23.1",
"typeface-roboto": "^0.0.54",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"winston": "^3.1.0",
"workbox-webpack-plugin": "^3.6.3",
"xml-js": "^1.6.8"
}
}