This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.05 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
{
"private": true,
"name": "wwdcscholars-form",
"description": "WWDCScholars Sign-Up Form",
"version": "3.11.1",
"license": "MIT",
"author": {
"name": "Moritz Sternemann",
"url": "https://github.com/moritzsternemann",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/WWDCScholars/web-form.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"build:stage": "cross-env NODE_ENV=staging nuxt build",
"build:prod": "cross-env NODE_ENV=production nuxt build",
"start": "cross-env NODE_ENV=production nuxt start",
"release:create": "standard-version",
"release:create:pre": "standard-version --prerelease pre",
"release:build": "cross-env NODE_ENV=production LOCAL=1 nuxt build",
"release:sentry": "./.github/release_sentry.sh",
"release:publish": "git push --follow-tags",
"release": "npm run release:create && npm run release:build && npm run release:publish && npm run release:sentry"
},
"dependencies": {
"@nuxtjs/axios": "^5.5.1",
"@nuxtjs/dotenv": "^1.3.0",
"@nuxtjs/proxy": "^1.3.3",
"@nuxtjs/sentry": "^3.0.0",
"@nuxtjs/style-resources": "^0.1.2",
"autosize": "^4.0.2",
"dayjs": "^1.8.14",
"json-loader": "^0.5.7",
"lodash.merge": "^4.6.1",
"node-sass": "^4.12.0",
"nuxt": "^2.7.1",
"nuxt-property-decorator": "^2.1.3",
"pica": "^5.0.0",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^7.1.0",
"ts-node": "^8.1.0",
"tsl-apple-cloudkit": "^0.2.14",
"vee-validate": "^2.2.8",
"vue-flatpickr-component": "^8.1.2",
"vue-plausible": "^1.1.4",
"vue2-google-maps": "^0.10.6",
"vuex": "^3.1.1",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@nuxt/typescript": "^2.7.1",
"@sentry/cli": "^1.43.0",
"@types/dotenv": "^6.1.1",
"@types/googlemaps": "^3.36.0",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^10.14.7",
"cross-env": "^5.2.0",
"standard-version": "^4.3.0",
"typescript": "^3.4.5"
}
}