-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "in-memoriam",
"version": "1.9.0",
"description": "Cartographie des décès militaires et civils Françaises",
"main": "index.html",
"repository": "https://github.com/Geolim4/In-Memoriam.git",
"author": "Georges.L <[email protected]>",
"license": "GPL-2.0",
"private": false,
"scripts": {
"minify-json": "node scripts/jsonMinify.cjs",
"update-sw": "node scripts/updateSW.cjs",
"build-css": "stylelint \"src/**/*.scss\" && yarn webpack --config './webpack/cssConfig.js'",
"build-js": "yarn lint && yarn webpack --config './webpack/jsConfig.js' && yarn update-sw",
"build": "yarn build-css && yarn build-js && yarn minify-json",
"lint": "eslint -c .eslintrc.js --ext .ts src/ts",
"lint-fix": "eslint -c .eslintrc.js --ext .ts src/ts --fix",
"watch": "npm-watch"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"watch": {
"build-css": {
"extensions": [
"scss"
],
"ignore": [
"assets",
"node_modules"
],
"patterns": [
"src/"
]
},
"build-js": {
"extensions": [
"ts"
],
"ignore": [
"assets",
"node_modules"
],
"patterns": [
"src/"
]
}
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"@googlemaps/js-api-loader": "^1.14.3",
"@googlemaps/markerclusterer": "^1.0.21",
"@typescript-eslint/parser": "^5.38.0",
"@ungap/structured-clone": "^1.0.1",
"activity-detector": "^3.0.0",
"array-unique": "^0.3.2",
"autocompleter": "^6.1.3",
"bootstrap": "^4.6.2",
"cli-color": "^2.0.2",
"es6-promise": "^4.2.8",
"escape-html": "^1.0.3",
"export-to-csv": "^0.2.1",
"form-serialize": "^0.7.2",
"glob": "^8.0.3",
"highcharts": "^9.3.3",
"jquery": "^3.5.0",
"js-cookie": "^3.0.1",
"jsonminify": "^0.4.2",
"markdown": "^0.5.0",
"micromodal": "^0.4.2",
"node-snackbar": "^0.1.16",
"object-merge": "^2.5.1",
"polyfill-io-feature-detection": "^1.1.15",
"popper.js": "^1.15.0",
"pure-css-loader": "^3.3.3",
"qs": "^6.11.0",
"text-obfuscator": "^1.1.0",
"tippy.js": "^5.1.1",
"tom-select": "^2.2.2",
"twig": "^1.16.0",
"typescript": "4.0.8"
},
"devDependencies": {
"@types/googlemaps": "^3.37.4",
"@types/markerclustererplus": "^2.1.33",
"@types/node": "^12.7.2",
"@types/qwest": "^1.7.28",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"autoprefixer": "^9.6.1",
"create-polyfill-service-url": "^2.2.6",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"extract-loader": "^3.1.0",
"file-loader": "^4.2.0",
"npm-watch": "^0.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"sass": "^1.52.3",
"sass-loader": "^7.3.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"terser-webpack-plugin": "^1.4.1",
"ts-loader": "^6.0.4",
"webpack": "4.46.0",
"webpack-cli": "^3.3.7",
"webpack-fix-style-only-entries": "^0.3.1"
}
}