-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
52
53
{
"type": "module",
"private": true,
"scripts": {
"dev": "nuxi dev",
"dev-no-ssr": "NUXT_SSR=false nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs",
"preview": "nuxi preview",
"test": "eslint . && start-server-and-test dev-no-ssr http://localhost:3000 cy:run",
"cy:run": "cypress run --browser chrome",
"cy:ci": "cypress run --browser chrome",
"cy:open": "cypress open",
"test-cypress": "start-server-and-test dev-no-ssr http://localhost:3000 cy:run",
"test-cypress-ci": "start-server-and-test dev-no-ssr http://localhost:3000 cy:ci",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@nypublicradio/nypr-design-system-vue3": "1.0.10",
"@sentry/browser": "^8.31.0",
"@sentry/vue": "^8.31.0",
"@vueuse/core": "^9.1.0",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.0.1",
"gsap": "^3.10.4",
"howler": "^2.2.3",
"humps": "^2.0.1",
"primeicons": "5.0.0",
"primevue": "3.21.0",
"vue-social-sharing": "^4.0.0-alpha4"
},
"devDependencies": {
"@antfu/eslint-config": "^1.0.0-beta.24",
"@sentry/vite-plugin": "^2.21.1",
"axe-core": "^4.9.1",
"cypress": "^13.13.1",
"cypress-axe": "^1.5.0",
"eslint": "^8.51.0",
"lint-staged": "^14.0.1",
"nuxt": "^3.13.2",
"sass": "^1.69.4",
"simple-git-hooks": "^2.9.0",
"start-server-and-test": "^2.0.0",
"typescript": "^5.2.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}