-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 2.11 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
{
"name": "scrumretro",
"version": "1.0.0",
"description": "Scrum retro hackday project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:client && npm run build:server",
"build:server": "webpack -c ./src/webpack.config.js --progress",
"dev:client": "nuxt -c ./nuxt.config.ts",
"build:client": "nuxt build -c ./nuxt.config.ts",
"start:client": "nuxt start -c ./nuxt.config.ts",
"generate:client": "nuxt generate -c ./nuxt.config.ts",
"deploy": "cross-env NODE_ENV=development LAMBDA_ENV=dev npm run build && sls deploy",
"deploy.prod": "cross-env NODE_ENV=production LAMBDA_ENV=prod npm run build && sls deploy --stage prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thousandeyes/scrumretro.git"
},
"author": "",
"license": "AL2",
"bugs": {
"url": "https://github.com/thousandeyes/scrumretro/issues"
},
"homepage": "https://github.com/thousandeyes/scrumretro#readme",
"dependencies": {
"@babel/runtime": "^7.19.4",
"@nuxt/http": "^0.1.2",
"core-js": "^3.25.5",
"lodash": "^4.17.20",
"nuxt": "^2.14.12",
"nuxt-start": "^2.14.12",
"serverless-http": "^2.6.0",
"ufo": "^0.8.6",
"unfetch": "^4.2.0",
"uuid": "^8.3.2",
"uuid-random": "^1.3.2",
"vue": "^2.6.14",
"vue-server-renderer": "^2.6.12"
},
"devDependencies": {
"@nuxt/types": "^2.14.12",
"@nuxt/typescript-build": "^2.0.4",
"@nuxtjs/toast": "^3.3.1",
"@types/aws-lambda": "^8.10.64",
"@types/aws-sdk": "^2.7.0",
"@types/lodash": "^4.14.165",
"axios": "^0.21.1",
"cross-env": "^7.0.3",
"serverless": "^3.23.0",
"serverless-api-cloudfront": "^0.9.5",
"serverless-domain-manager": "^5.1.0",
"serverless-plugin-common-excludes": "^3.0.1",
"serverless-plugin-include-dependencies": "^4.1.0",
"serverless-s3-sync": "^1.15.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.2",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.44.0",
"webpack-cli": "^4.4.0"
},
"engines": {
"node": ">=12.0",
"npm": ">=7.0"
}
}