-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4.13 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "snapeat",
"version": "0.1.0",
"private": true,
"scripts": {
"==next==": "------------------------------------------------------------------------------------------",
"dev:nodemon": " nodemon --exec \"env-cmd -f ./.config/dev.env node --inspect server.js\" -w ./server.js -w ./next.config.js -w ./.config/dev.env",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production node server.js",
"==lint&format==": "-----------------------------------------------------------------------------------",
"lint": "jest --config test/jest.lint.js",
"format": "npm run prettier -- --write",
"prettier": "prettier \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)\"",
"validate": "npm run lint && npm run prettier -- --list-different",
"==docker&prisma==": "---------------------------------------------------------------------------------",
"up": "docker-compose up -d",
"down": "docker-compose down --remove-orphans",
"deploy": "prisma deploy",
"schema": "prisma generate",
"token": "prisma token",
"==prisma-dev==": "--------------------------------------------------------------------------------------",
"dev:deploy": "env-cmd -f ./.config/dev.env npm run deploy && npm run dev:schema",
"dev:schema": "env-cmd -f ./.config/dev.env npm run schema",
"dev:token": "env-cmd -f ./.config/dev.env npm run token",
"dev:up": "env-cmd -f ./.config/dev.env npm run up",
"dev:down": "env-cmd -f ./.config/dev.env npm run down",
"dev:seed": "env-cmd -f ./.config/dev.env ts-node -O '{\"module\": \"commonjs\"}' ./prisma/seeds.ts",
"dev:flushdb": "env-cmd -f ./.config/dev.env ts-node -O '{\"module\": \"commonjs\"}' ./prisma/flushDB.ts",
"==prisma:staging==": "------------------------------------------------------------------------------------",
"staging:deploy": "env-cmd -f ./.config/staging.env npm run deploy && npm run staging:schema",
"staging:schema": "env-cmd -f ./.config/staging.env npm run schema",
"staging:token": "env-cmd -f ./.config/staging.env npm run token",
"staging:up": "env-cmd -f ./.config/staging.env npm run up",
"staging:down": "env-cmd -f ./.config/staging.env npm run down"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest-runner-eslint": {
"cliOptions": {
"fix": true,
"ext": [
".js",
".ts"
]
}
},
"dependencies": {
"@auth0/nextjs-auth0": "^0.5.0",
"@zeit/next-css": "^1.0.1",
"airtable": "^0.8.1",
"axios": "^0.19.0",
"cloudinary": "^1.17.0",
"connect-redis": "^4.0.3",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-sslify": "^1.2.0",
"formidable": "^1.2.1",
"formik": "^2.0.4",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"libphonenumber-js": "^1.7.29",
"moment": "^2.24.0",
"next": "^9.1.4",
"next-compose-plugins": "^2.2.0",
"next-cookies": "^2.0.1",
"next-fonts": "^0.19.0",
"next-images": "^1.2.0",
"next-offline": "^4.0.6",
"node-cron": "^2.0.3",
"passport": "^0.4.0",
"passport-auth0": "^1.2.1",
"prisma": "^1.34.10",
"ramda": "^0.26.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-toastify": "^5.4.1",
"redis": "^2.8.0",
"styled-components": "^4.4.1",
"tailwindcss": "^1.1.3",
"twilio": "^3.37.1",
"yup": "^0.27.0"
},
"devDependencies": {
"@types/formidable": "^1.0.31",
"@types/node": "^12.12.7",
"@types/ramda": "^0.26.34",
"@types/react": "^16.9.11",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"autoprefixer": "^9.7.1",
"concurrently": "^5.0.0",
"env-cmd": "^10.0.1",
"eslint": "^6.6.0",
"eslint-config-kentcdodds": "^14.6.1",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-typescript": "^2.0.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-runner-eslint": "^0.7.5",
"lint-staged": "^9.4.3",
"nodemon": "^1.19.4",
"postcss-import": "^12.0.1",
"prettier": "^1.19.1",
"shell-quote": "^1.7.2",
"tachyons": "^4.11.1",
"typescript": "^3.7.2"
}
}