-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"private": true,
"type": "module",
"name": "wwdcscholars-web",
"description": "WWDCScholars.com Website",
"version": "4.5.0",
"license": "MIT",
"author": {
"name": "Moritz Sternemann",
"url": "https://github.com/moritzsternemann",
"email": "opensource@moritzsternemann.de"
},
"repository": {
"type": "git",
"url": "https://github.com/WWDCScholars/web-app.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"analyze": "cross-env NODE_ENV=production nuxt generate --analyze",
"build:prod": "cross-env NODE_ENV=production nuxt generate",
"build:stage": "cross-env NODE_ENV=staging nuxt generate",
"start:prod": "cross-env NODE_ENV=production nuxt start",
"start:stage": "cross-env NODE_ENV=staging nuxt start",
"release:create": "commit-and-tag-version",
"release:create:pre": "commit-and-tag-version --prerelease pre",
"release:publish": "git push --follow-tags",
"release": "yarn run release:create && yarn run release:publish",
"release:pre": "yarn run release:create:pre && yarn run release:publish",
"admin:mapkit-jwt:generate": "node scripts/mapkit-jwt generate",
"admin:mapkit-jwt:peek": "node scripts/mapkit-jwt peek"
},
"dependencies": {
"@netlify/functions": "^1.3.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/color-mode": "^2.1.1",
"@nuxtjs/sentry": "^5.1.7",
"@wwdcscholars/cloudkit": "^3.12.0",
"autosize": "^4.0.2",
"dayjs": "^1.8.26",
"lodash.get": "^4.4.2",
"nuxt": "^2.17.3",
"phone": "^2.4.21",
"pica": "^5.3.0",
"throttle-debounce": "^3.0.1",
"uuid": "^3.4.0",
"vee-validate": "^3.4.0",
"vue-cool-lightbox": "^2.7.4",
"vue-lazyload": "^1.3.3"
},
"devDependencies": {
"@nuxt/types": "^2.17.3",
"@nuxt/typescript-build": "^3.0.2",
"@nuxtjs/style-resources": "^1.2.2",
"@nuxtjs/svg": "^0.4.1",
"@sentry/webpack-plugin": "^1.18.9",
"@types/apple-mapkit-js-browser": "~5.65.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^20.11.1",
"@types/phone": "^2.4.0",
"@types/pica": "^5.1.1",
"@types/throttle-debounce": "^2.1.0",
"@types/uuid": "^8.3.0",
"commit-and-tag-version": "^12.2.0",
"cross-env": "^7.0.3",
"jsonwebtoken": "^8.5.1",
"nuxt-property-decorator": "^2.9.1",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"sass": "^1.43.4",
"sass-loader": "^10.1.1",
"typescript": "~5.4.3",
"vuex-module-decorators": "^1.0.1"
}
}