-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.44 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
{
"name": "homepage-prototype",
"description": "The source for my GitHub Pages, based on Vue JS.",
"version": "1.0.0",
"main": "assets/sass/mystyles.scss",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"css-build": "node-sass --omit-source-map-url src/assets/sass/mystyles.scss src/assets/css/mystyles.css",
"css-watch": "npm run css-build -- --watch",
"preview": "vite preview --port 4173",
"start": "npm run css-watch",
"test:unit": "vitest --environment jsdom",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
},
"dependencies": {
"bulma": "^0.9.4",
"vue": "^3.2.37",
"vue-router": "^4.1.1"
},
"devDependencies": {
"@types/jsdom": "^16.2.14",
"@types/node": "^16.11.43",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/test-utils": "^2.0.0",
"@vue/tsconfig": "^0.1.3",
"bulma": "^0.9.4",
"jsdom": "^20.0.0",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"sass-loader": "^13.0.2",
"typescript": "~4.7.4",
"vite": "^2.9.12",
"vitest": "^0.15.1",
"vue-tsc": "^0.38.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jameshskoh/homepage-source.git"
},
"author": "jameshskoh",
"license": "MIT",
"bugs": {
"url": "https://github.com/jameshskoh/homepage-source/issues"
},
"homepage": "https://github.com/jameshskoh/homepage-source#readme"
}