forked from dashboardphilippines/boilerplate-fullstack
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.2 KB
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
{
"name": "boilerplate-fullstack",
"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 ./pages ./src --ext .js,.jsx,.ts,.tsx --fix ",
"pretty": "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/classnames": "^2.2.11",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/js-cookie": "^2.2.6",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.23.1",
"nodemon": "^2.0.20",
"prettier": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.3"
},
"dependencies": {
"@apollo/client": "^3.3.13",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.14",
"@mui/material": "^5.10.14",
"@next/bundle-analyzer": "^13.0.4",
"apollo-server-express": "^2.22.2",
"axios": "^0.21.4",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-import-node": "0.0.4",
"helmet": "^4.4.1",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.1.1",
"next": "^12.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}