-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
164 lines (164 loc) · 5.41 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "helloworld",
"version": "1.0.0",
"description": "Web page for Hello World 2019",
"main": "dist/backend/index.js",
"scripts": {
"dev": "ts-node-dev -P tsconfig.server.json --transpile-only --respawn --no-notify --ignore-watch node_modules --ignore-watch frontend backend/index.ts",
"dev:debug": "ts-node-dev -P tsconfig.server.json --respawn --no-notify --ignore-watch node_modules --ignore-watch frontend --inspect -- backend/index.ts",
"clean": "rimraf dist frontend/.next",
"build-client": "cd frontend && next build",
"build-server": "tsc --project tsconfig.server.json",
"build": "NODE_ENV=production npm run clean && npm run build-client && npm run build-server && rimraf dist/frontend/* && cp -r frontend/assets frontend/static frontend/next.config.js frontend/.next dist/frontend",
"test": "npm run build && npm run test:all",
"test:all": "jest --detectOpenHandles",
"test:e2e": "npm run test:all -- -t 'E2E'",
"test:integration": "npm run test:all -- -t 'Integration'",
"start": "NODE_ENV=production node dist/backend/index.js",
"start-ts": "NODE_ENV=production ts-node --compilerOptions '{\"module\":\"commonjs\"}' backend/index.ts",
"start-client": "cd frontend && next start",
"migrate": "yarn ts-node -T -P ./tsconfig.server.json backend/utils/migration.ts",
"lint": "tsc --noEmit && eslint ./**/*.{ts,tsx}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashwinGokhale/HelloWorld2019.git"
},
"author": "Purdue Hackers",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashwinGokhale/HelloWorld2019/issues"
},
"homepage": "https://github.com/ashwinGokhale/HelloWorld2019#readme",
"dependencies": {
"@google-cloud/storage": "^2.4.1",
"@next/bundle-analyzer": "^9.0.2",
"@sendgrid/mail": "^6.3.1",
"@sentry/browser": "^5.6.2",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"axios": "^0.19.0",
"bcrypt": "^3.0.3",
"chalk": "^2.4.2",
"class-validator": "0.8.5",
"class-validator-jsonschema": "^1.2.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"helmet": "^3.15.0",
"imagemin-gifsicle": "^6.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^7.0.0",
"imagemin-svgo": "^7.0.0",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.4.0",
"less": "^3.9.0",
"less-vars-to-js": "^1.3.0",
"mongodb": "^3.1.13",
"mongoose": "^5.4.8",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"next": "^8.0.3",
"next-compose-plugins": "^2.2.0",
"next-offline": "^4.0.2",
"next-optimized-images": "^2.5.3",
"next-redux-wrapper": "^3.0.0-alpha.1",
"next-transpile-modules": "^2.3.1",
"node-sass": "^4.12.0",
"passport-jwt": "^4.0.0",
"pino": "^5.12.6",
"qrcode.react": "^0.9.3",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-ga": "^2.5.7",
"react-qr-reader": "^2.2.1",
"react-redux": "^6.0.0",
"react-table": "^6.9.2",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"routing-controllers": "^0.7.7",
"routing-controllers-openapi": "^1.7.0",
"swagger-ui-express": "^4.0.2",
"typedi": "^0.8.0",
"uikit": "^3.1.7",
"web-push": "^3.3.5",
"yes-https": "^1.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.3.0",
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.0.1",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/enzyme": "^3.1.16",
"@types/expect-puppeteer": "^3.3.1",
"@types/express": "^4.16.1",
"@types/faker": "^4.1.5",
"@types/helmet": "^0.0.42",
"@types/jest": "^23.3.13",
"@types/jest-environment-puppeteer": "^4.0.0",
"@types/js-cookie": "^2.2.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/mongodb": "^3.1.19",
"@types/mongoose": "^5.3.10",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.9",
"@types/next": "^7.0.8",
"@types/next-redux-wrapper": "^2.0.2",
"@types/node": "^10.12.21",
"@types/passport-jwt": "^3.0.1",
"@types/pino": "^5.8.8",
"@types/puppeteer": "^1.12.4",
"@types/qrcode.react": "^0.8.2",
"@types/react": "^16.8.1",
"@types/react-qr-reader": "^2.1.2",
"@types/react-redux": "^7.0.1",
"@types/react-table": "^6.7.22",
"@types/redux": "^3.6.0",
"@types/redux-logger": "^3.0.6",
"@types/redux-thunk": "^2.1.0",
"@types/styled-jsx": "^2.2.8",
"@types/supertest": "^2.0.7",
"@types/swagger-ui-express": "^3.0.0",
"@types/web-push": "^3.3.0",
"@types/workbox-sw": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"faker": "^4.1.0",
"fork-ts-checker-webpack-plugin": "^0.5.2",
"jest": "^24.8.0",
"jest-environment-node": "^24.0.0",
"jest-puppeteer": "^4.2.0",
"mongodb-memory-server": "^3.0.0",
"pino-pretty": "^3.2.0",
"prettier": "^1.16.2",
"puppeteer": "^1.17.0",
"react-test-renderer": "^16.7.0",
"redux-logger": "^3.0.6",
"rimraf": "^2.6.3",
"supertest": "^3.4.2",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.40",
"types-serviceworker": "^0.0.1",
"typescript": "^3.3.1",
"workbox-sw": "^4.3.1"
},
"eslintIgnore": [
"dist/*",
"frontend/.next/*"
]
}