-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "@arpowers/site",
"version": "5.0.0",
"main": "src/index.ts",
"license": "UNLICENSED",
"scripts": {
"dev": "npm exec -- factor run r-dev",
"build": "npm exec -- factor run prerender",
"test-eslint": "eslint --ext .ts,.js .",
"clear-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean-install": "pnpm clear-modules && rm pnpm-lock.yaml && pnpm i && pnpm up -r && pnpm outdated"
},
"publishConfig": {
"access": "restricted"
},
"engines": {
"node": "^18.0.0"
},
"factor": {
"name": "AndrewPowers.co",
"email": "hello@andrewpowers.co",
"url": "https://www.andrewpowers.co",
"domain": "andrewpowers.co"
},
"dependencies": {
"@factor/api": "latest",
"@factor/lint": "latest",
"@factor/plugin-notify": "latest",
"@factor/ui": "latest",
"@types/node": "^18.0.3",
"@vitejs/plugin-vue": "^2.3.3",
"events": "^3.3.0",
"handlebars": "^4.7.7",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.6",
"typescript": "^4.7.4",
"vite": "^2.9.14",
"vue": "^3.2.37",
"vue-router": "^4.1.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"less": "^4.1.3",
"prettier": "^2.7.1"
}
}