forked from nextcloud/notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.75 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
50
51
52
53
54
55
56
57
58
{
"name": "notes",
"version": "6.0.1",
"private": true,
"homepage": "https://github.com/nextcloud/notes",
"license": "agpl",
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"lint": "eslint src playwright",
"lint:fix": "eslint src playwright --fix",
"start:nextcloud": "node playwright/start-nextcloud-server.mjs",
"stylelint": "stylelint 'src/**/*.vue' 'css/**/*.css'",
"stylelint:fix": "stylelint 'src/**/*.vue' 'css/**/*.css' --fix",
"test:e2e": "playwright test",
"test:e2e:report": "playwright show-report",
"test:e2e:ui": "playwright test --ui",
"watch": "webpack --node-env development --progress --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/axios": "^2.6.0",
"@nextcloud/dialogs": "^7.4.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/moment": "^1.3.5",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.8.2",
"diff": "^9.0.0",
"easymde": "^2.21.0",
"markdown-it": "^15.0.0",
"markdown-it-bidi": "^0.2.0",
"markdown-it-task-checkbox": "^1.0.6",
"pinia": "^4.0.2",
"vue": "^3.5.39",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/e2e-test-server": "^0.5.0",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/webpack-vue-config": "^7.0.2",
"@playwright/test": "^1.62.1",
"terser-webpack-plugin": "^5.6.1",
"vue-loader": "^17.3.1"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}