forked from etalab/geo.data.gouv.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.15 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
107
108
109
110
111
112
113
114
115
116
117
{
"name": "inspire.data.gouv.fr",
"version": "1.0.0",
"homepage": "https://inspire.data.gouv.fr",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-react-app": "^2.0.1",
"babel-register": "^6.18.0",
"bluebird": "^3.4.6",
"case-sensitive-paths-webpack-plugin": "^1.1.4",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"classnames": "^2.2.5",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.26.1",
"detect-port": "^1.0.0",
"dotenv": "^2.0.0",
"enzyme": "^2.4.1",
"eslint": "^3.8.1",
"eslint-config-react-app": "^0.5.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-flowtype": "^2.21.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.4.1",
"expect": "^1.20.2",
"filesize": "^3.3.0",
"find-cache-dir": "^0.1.1",
"fs-extra": "^2.0.0",
"gh-pages": "^0.12.0",
"gzip-size": "^3.0.0",
"html-webpack-plugin": "^2.22.0",
"http-proxy-middleware": "^0.17.1",
"ignore-styles": "^5.0.1",
"jsdom": "^9.6.0",
"mocha": "^3.1.2",
"object-assign": "^4.1.0",
"postcss": "^5.2.6",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.0.0",
"postcss-loader": "^1.2.0",
"postcss-reporter": "^3.0.0",
"postcss-url": "^5.1.2",
"promise": "^7.1.1",
"proxyquire": "^1.7.10",
"react-addons-test-utils": "^15.4",
"react-dev-utils": "^0.5.0",
"recursive-readdir": "^2.1.0",
"strip-ansi": "^3.0.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"chart.js": "^2.5.0",
"leaflet": "^1.0.2",
"lodash": "^4.16.4",
"marked": "^0.3.6",
"moment": "^2.14.1",
"piwik-react-router": "^0.6.0",
"preact": "^7.1.0",
"preact-compat": "^3.9.4",
"qs": "^6.3.0",
"react": "^15.4",
"react-addons-create-fragment": "^15.4.0",
"react-chartjs-2": "^2.0.0",
"react-document-title": "^2.0.2",
"react-dom": "^15.4",
"react-leaflet": "^1.1.1",
"react-paginate": "^4.1.1",
"react-responsive": "^1.1.5",
"react-router": "^3.0.1",
"react-router-scroll": "^0.4.1",
"reactable": "^0.14.1",
"underscore.string": "^3.3.4",
"whatwg-fetch": "^2.0.1"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"build:profiling": "WEBPACK_PROFILING=1 node scripts/build.js",
"test": "mocha -r scripts/test.js -r ignore-styles src/**/*.test.js",
"deploy": "gh-pages -d build",
"lint": "eslint config scripts src"
},
"eslintConfig": {
"extends": "react-app",
"plugins": [
"mocha"
],
"rules": {
"quotes": [
"error",
"single"
],
"no-console": "warn",
"no-debugger": "error",
"mocha/no-exclusive-tests": "error"
}
},
"babel": {
"presets": [
"react-app"
],
"plugins": [
"lodash"
]
}
}