-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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": "dubhacks2020",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"build": "rm -rf dist && next build src/frontend && tsc --build tsconfig.json && copyfiles -u 1 **/*.graphql dist && copyfiles -u 1 **/*.pdf dist && copyfiles -u 1 **/*.ttf dist && copyfiles -u 1 **/*.png dist",
"start": "NODE_ENV=production node dist/index.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix && prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/phillytan/dubhacks2020.git"
},
"keywords": [],
"author": "Philly Tan <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/phillytan/dubhacks2020/issues"
},
"homepage": "https://github.com/phillytan/dubhacks2020#readme",
"devDependencies": {
"@types/apollo-upload-client": "^8.1.3",
"@types/bcrypt": "^3.0.0",
"@types/classnames": "^2.2.10",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.6",
"@types/helmet": "0.0.47",
"@types/isomorphic-fetch": "0.0.35",
"@types/js-cookie": "^2.2.6",
"@types/js-md5": "^0.4.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.9",
"@types/react": "^16.9.44",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-react": "^7.20.5",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"@mikro-orm/core": "^4.1.0",
"@mikro-orm/mongodb": "^4.1.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-context": "^1.0.20",
"apollo-server-express": "^2.14.2",
"apollo-upload-client": "^14.1.1",
"bcrypt": "^5.0.0",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"copyfiles": "^2.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.0.0",
"graphql-import-node": "0.0.4",
"helmet": "^3.22.0",
"isomorphic-fetch": "^3.0.0",
"js-cookie": "^2.2.1",
"js-md5": "^0.7.3",
"jsonwebtoken": "^8.5.1",
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}