-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "sage-vite",
"version": "9.0.9",
"authors": [
"Roots <[email protected]>",
"Matt Dickey <[email protected]>"
],
"homepage": "https://roots.io/sage/",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/8bit-echo/sage-starter.git"
},
"bugs": {
"url": "https://github.com/8bit-echo/sage-starter/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"scripts": {
"dev": "yarn env:dev && export APP_ENV=development && vite",
"build": "yarn env:prod && export APP_ENV=production && tsc && vite build",
"env:dev": "replace-in-files --string='production' --replacement='development' ./.env",
"env:prod": "replace-in-files --string='development' --replacement='production' ./.env"
},
"engines": {
"node": ">= 8.0.0"
},
"devDependencies": {
"@types/blazy": "^1.5.32",
"@types/node": "^15.6.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react-refresh": "^1.3.3",
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.11",
"replace-in-files-cli": "^1.0.0",
"sass": "^1.34.0",
"typescript": "^4.1.2",
"vite": "^2.3.4",
"vite-plugin-live-reload": "^2.1.0",
"vue-tsc": "^0.0.24"
},
"dependencies": {
"blazy": "^1.8.2",
"jquery": "^3.6.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"vue": "^3.0.5"
}
}