This repository has been archived by the owner on Feb 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.7 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
{
"name": "labbr",
"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/dashboardphilippines/boilerplate-fullstack.git"
},
"keywords": [],
"author": "Philly Tan <philly@phillytan.xyz>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dashboardphilippines/boilerplate-fullstack/issues"
},
"homepage": "https://github.com/dashboardphilippines/boilerplate-fullstack#readme",
"devDependencies": {
"@types/apollo-upload-client": "^8.1.3",
"@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/jsonwebtoken": "^8.5.0",
"@types/node": "^14.11.8",
"@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",
"lint-staged": "^10.2.11",
"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.0.7",
"@mikro-orm/mongodb": "^4.0.7",
"@sendgrid/mail": "^7.2.6",
"@types/recharts": "^1.8.16",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-context": "^1.0.20",
"apollo-server": "^2.18.2",
"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",
"dataloader": "^2.0.0",
"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",
"jsonwebtoken": "^8.5.1",
"jwt-simple": "^0.5.6",
"mongodb": "^3.6.2",
"next": "^9.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"recharts": "^1.8.5",
"unique-names-generator": "^4.3.1"
}
}