-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 885 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
{
"name": "vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tests": "npx cypress run --spec cypress/e2e/app.cy.js",
"data": "npx cypress run --spec cypress/e2e/councillors.cy.js; node ./src/tools/getphotos.js; spd-say done"
},
"dependencies": {
"csv-parse": "^5.3.5",
"debounce": "^1.2.1",
"leaflet": "^1.9.2",
"vue": "^3.2.45"
},
"devDependencies": {
"cypress": "^11.1.0",
"modern-css-reset": "^1.4.0",
"postcss-css-variables": "^0.18.0",
"postcss-import": "^15.0.0",
"postcss-nesting": "^10.2.0",
"sharp": "^0.31.3",
"@vitejs/plugin-vue": "^4.0.0",
"vite": "^4.1.0"
},
"postcss": {
"plugins": {
"postcss-import": {},
"postcss-nesting": {},
"postcss-css-variables": {}
}
}
}