-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "skok",
"version": "0.1.1",
"private": true,
"main": "app.js",
"type": "module",
"scripts": {
"dev": "NODE_ENV=dev vite --host --port 3000",
"build": "vite build",
"serve": "vite preview",
"api": "NODE_ENV=production npm run build && node --watch app.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"clean-data": "rm -rf data/*",
"photos": "find . -name '.DS_Store' -delete && node photos.js",
"server": "pm2 start app.js"
},
"dependencies": {
"@vimeo/player": "^2.20.1",
"connect-history-api-fallback": "^2.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.8.1",
"graphql-http": "^1.22.0",
"pm2": "^5.4.3",
"vue": "^3.3.12",
"vue-i18n": "^9.8.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@csstools/postcss-global-data": "^2.1.1",
"@vitejs/plugin-vue": "^4.5.2",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.2",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"vite": "^5.0.10"
}
}