-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "when",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"dev:functions": "netlify-lambda serve ./src/functions",
"build": "vite build",
"build:ci": "yarn env && yarn build:functions-install && yarn build:functions && yarn build",
"build:functions": "netlify-lambda build ./src/functions",
"build:functions-install": "netlify-lambda install ./src/functions",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ./src",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix ./src",
"env": "yarn node ./scripts/generateEnv.js"
},
"dependencies": {
"bent": "^7.3.9",
"vue": "^3.0.0-rc.1",
"vue-router": "next",
"vuex": "next",
"vuex-persist": "^2.2.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.2.0",
"@tailwindcss/ui": "^0.4.0",
"@vue/compiler-sfc": "^3.0.0-rc.1",
"autoprefixer": "^9.8.5",
"babel-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "next",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lodash": "^4.17.19",
"netlify-lambda": "^2.0.1",
"postcss-nested": "^4.2.3",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"tailwindcss": "^1.6.2",
"vite": "^1.0.0-rc.1"
},
"lint-staged": {
"src/*.{js,vue}": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}