-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.5 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
99
100
101
102
103
104
105
106
{
"name": "t",
"version": "0.1.0",
"private": true,
"dependencies": {
"bcrypt": "^3.0.6",
"express": "^4.17.1",
"express-graphql": "^0.8.0",
"graphql": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.11"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-named-asset-import": "^0.3.2",
"babel-preset-react-app": "^9.0.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-flowtype": "^3.9.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"expect.js": "^0.3.1",
"file-loader": "^3.0.1",
"fs-extra": "^8.0.1",
"html-webpack-plugin": "4.0.0-beta.5",
"leaflet": "^1.5.1",
"leaflet.markercluster": "^1.4.1",
"mini-css-extract-plugin": "^0.7.0",
"mocha": "^6.1.4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^7.0.1",
"postcss-preset-env": "^6.6.0",
"postcss-safe-parser": "^4.0.1",
"puppeteer": "^1.18.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"resolve": "^1.11.0",
"sass-loader": "^7.1.0",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.32.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
},
"main": "server.js",
"scripts": {
"build": "node scripts/build.js",
"dev": "NODE_ENV=development nodemon",
"test": "node node_modules/.bin/standard --fix && node scripts/build.js && node node_modules/.bin/mocha"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"react-app"
]
},
"standard": {
"globals": [
"fetch",
"browser",
"url",
"wait",
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"nodemonConfig": {
"ignore": [
"public/",
"scripts/",
"src/",
"test/",
"build/"
],
"ignoreRoot": [
".git/"
]
}
}