-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1019 Bytes
/
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
{
"name": "Wigator",
"version": "1.0.0",
"private": true,
"dependencies": {
"core-js": "^3.24.1",
"leaflet": "^1.8.0",
"normalize.css": "^8.0.1",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/leaflet": "^1.7.11",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"browserslist": "^4.21.3",
"eslint": "^8.21.0",
"rollup": "^2.77.2",
"rollup-plugin-css-porter": "^1.0.2",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^14.9.1",
"stylelint-config-standard": "^26.0.0",
"typescript": "^4.7.4"
},
"scripts": {
"lint": "time eslint --ext .ts src --cache --cache-location output -f unix",
"stylelint": "stylelint 'src/**/*.css'",
"tsc": "tsc",
"build": "rollup -c",
"dev": "rollup -c --environment DEV"
}
}