-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.6 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.6 KB
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
{
"name": "done",
"version": "1.7.0",
"license": "MIT",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.js --progress",
"dev": "concurrently --kill-others \"npm run watch\" \"npm run tailwind\"",
"dev-old": "NODE_ENV=development webpack --config webpack.js --progress",
"watch": "NODE_ENV=development webpack --config webpack.js --progress --watch",
"lint": "eslint src",
"eslint-check": "eslint src --ext .js,.vue",
"eslint-fix": "eslint src --ext .js,.vue --fix",
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
"tailwind": "npx @tailwindcss/cli -i ./src/app/assets/styles/main.css -o ./css/main.css --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/axios": "^2.5.1",
"@nextcloud/event-bus": "^3.3.2",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.11.2",
"vue": "^2.7.16",
"vue-notification": "^1.3.20",
"vue-router": "^3.6.5",
"vuedraggable": "^2.24.3",
"vuelidate": "^0.7.7"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/webpack-vue-config": "^6.0.1",
"@tailwindcss/cli": "^4.1.11",
"concurrently": "^9.2.0",
"date-fns": "^4.1.0",
"eslint": "^8.57.0",
"eslint-webpack-plugin": "^4.1.0",
"pinia": "2.1.0",
"stylelint-webpack-plugin": "^5.0.0",
"tailwindcss": "^4.1.11",
"vue-material-design-icons": "^5.3.1"
}
}