This repository was archived by the owner on Aug 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.92 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
75
76
77
{
"name": "qiita-stocker-frontend",
"version": "1.0.0",
"description": "Mindexer frontend project",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development NUXT_HOST=127.0.0.1 NUXT_PORT=8080 nodemon",
"build": "rm -rf .nuxt dist && tsc -p tsconfig.server.json && nuxt-ts build",
"start": "cross-env NODE_ENV=production node dist/server/server.js",
"generate": "nuxt-ts generate",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"format": "eslint --fix --ext .ts,.js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"test": "jest",
"deployToS3:dev": "DEPLOY_STAGE=dev node deployToS3.js",
"deployToS3:stg": "DEPLOY_STAGE=stg node deployToS3.js",
"deployToS3:prod": "DEPLOY_STAGE=prod node deployToS3.js",
"deploy:dev": "STAGE=dev NODE_ENV=production sls deploy -v",
"deploy:stg": "STAGE=stg NODE_ENV=production sls deploy -v",
"deploy:prod": "STAGE=prod NODE_ENV=production sls deploy -v",
"remove:dev": "STAGE=dev sls remove -v",
"remove:stg": "STAGE=stg sls remove -v",
"remove:prod": "STAGE=prod sls remove -v",
"createEnvrc:local": "DEPLOY_STAGE=local ts-node --project tsconfig.server.json createEnv.ts",
"createEnvrc:dev": "DEPLOY_STAGE=dev ts-node --project tsconfig.server.json createEnv.ts",
"createEnvrc:stg": "DEPLOY_STAGE=stg ts-node --project tsconfig.server.json createEnv.ts",
"createEnvrc:prod": "DEPLOY_STAGE=prod ts-node --project tsconfig.server.json createEnv.ts"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@nuxt/typescript-build": "^0.5.4",
"@nuxt/typescript-runtime": "^0.3.5",
"@nuxtjs/markdownit": "^1.2.7",
"aws-serverless-express": "^3.3.6",
"axios": "^0.21.2",
"bulma": "^0.8.0",
"cookie-parser": "^1.4.4",
"cross-env": "^5.2.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"nuxt": "^2.11.0",
"nuxt-property-decorator": "^2.5.0",
"universal-cookie": "^4.0.3",
"uuid": "^3.3.3",
"vuex-type-helper": "^1.2.2"
},
"devDependencies": {
"@nekonomokochan/aws-env-creator": "^2.0.2",
"@nuxtjs/eslint-config-typescript": "^1.0.0",
"@types/aws-serverless-express": "^3.3.2",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.25",
"@types/universal-cookie": "^2.2.0",
"@types/uuid": "^3.4.6",
"@vue/test-utils": "^1.0.0-beta.30",
"aws-sdk": "^2.814.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-nuxt": "^0.5.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.1.1",
"jest": "^24.9.0",
"node-sass": "^7.0.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"s3": "^4.4.0",
"sass-loader": "^8.0.0",
"serverless": "^1.60.4",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"vue-jest": "^3.0.5"
}
}