-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.04 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
{
"name": "fancy-portfolio",
"version": "1.2.0",
"description": "Portfolio for JS",
"main": "index.js",
"scripts": {
"dev": "ts-node server.ts",
"build": "next build",
"start": "NODE_ENV=production ts-node server.ts",
"tsc": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts --ext .tsx --cache",
"analyze": "BUNDLE_ANALYZE=both next build",
"analyze:server": "BUNDLE_ANALYZE=server next build",
"analyze:browser": "BUNDLE_ANALYZE=browser next build"
},
"keywords": [],
"author": "Jakub Skoneczny",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.tsx": [
"prettier --write",
"eslint --fix"
],
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@material-ui/core": "4.11.2",
"@types/express": "4.17.11",
"dayjs": "1.9.8",
"dotenv": "8.2.0",
"express": "4.17.1",
"feed": "^4.2.2",
"firebase-admin": "9.4.2",
"next": "10.0.4",
"next-offline": "5.0.3",
"nprogress": "0.2.0",
"polished": "4.0.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-spinners": "0.9.0",
"ts-node": "9.1.1"
},
"devDependencies": {
"@babel/runtime-corejs2": "7.12.5",
"@emotion/babel-preset-css-prop": "10.0.23",
"@emotion/core": "10.0.22",
"@testing-library/react": "11.2.2",
"@types/node": "14.14.16",
"@types/nprogress": "0.2.0",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"@zeit/next-bundle-analyzer": "0.1.2",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.6",
"jest": "26.6.3",
"jest-emotion": "10.0.17",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"tslint-config-prettier": "1.18.0",
"typescript": "4.1.3"
}
}