-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "@apostrophecms/vite",
"version": "1.0.0-beta.2",
"description": "Vite build flow for ApostropheCMS projects.",
"main": "index.js",
"exports": {
".": "./index.js",
"./vite": {
"import": "./vite.mjs"
}
},
"scripts": {
"eslint": "eslint --ext .js .",
"lint": "npm run eslint",
"spec": "mocha",
"test": "npm run lint && npm run spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apostrophecms/vite.git"
},
"homepage": "https://github.com/apostrophecms/vite#readme",
"author": "Apostrophe Technologies",
"license": "MIT",
"devDependencies": {
"apostrophe": "github:apostrophecms/apostrophe",
"eslint": "^8.55.0",
"eslint-config-apostrophe": "^4.2.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0"
},
"dependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"fs-extra": "^7.0.1",
"postcss-load-config": "^6.0.1",
"postcss-viewport-to-container-toggle": "^1.0.0",
"vite": "^5.4.9"
}
}