forked from francoisburdy/zones-abc-pinel-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "zones-abc-pinel-map",
"description": "Carte de visualisation des zones Pinel A bis, A, B1, B2, et C",
"author": "François Burdy",
"keywords": [
"zones ABC",
"Loi Pinel"
],
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"build": "node ./src/build.js",
"dev": "webpack --mode=development",
"prod": "webpack --mode=production",
"watch": "webpack --watch --mode=development",
"watch-prod": "webpack --watch --mode=production",
"deploy": "rm -r ./dist/* && yarn build && yarn prod && git subtree push --prefix dist origin gh-pages"
},
"dependencies": {
"axios": "^1.1.2",
"mapbox-gl": "^2.10.0",
"vue": "^3.2.38",
"vue3-touch-events": "^4.1.0"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.6.0",
"file-loader": "^6.2.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}