-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.34 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
{
"name": "visitor-detection",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon src/index.ts",
"build": "rm -rf ./build && rm -rf ./dist && tsc && cp -R -n ./src/* ./dist && NODE_ENV=production next build",
"gcp-build": "yarn build",
"start": "NODE_ENV=production node dist",
"deploy": "yarn build && gcloud app deploy",
"storybook": "start-storybook -s ./public -p 6006",
"lint:test": "yarn eslint .",
"lint:fix": "yarn eslint --fix ."
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"antd": "^4.15.3",
"axios": "^0.21.1",
"babel-plugin-import": "^1.13.3",
"babel-plugin-module-resolver": "^4.1.0",
"date-fns": "^2.22.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase": "^8.4.3",
"firebase-admin": "^9.7.0",
"gray-matter": "^4.0.3",
"jsonwebtoken": "^8.5.1",
"less": "^4.1.1",
"mqtt": "^4.2.6",
"next": "10.2.0",
"next-auth": "^3.19.3",
"next-mdx-remote": "^3.0.2",
"next-optimized-images": "^2.6.2",
"next-plugin-antd-less": "^1.2.1",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^0.5.5",
"typescript": "^4.3.2"
},
"devDependencies": {
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-controls": "^6.2.9",
"@storybook/addon-docs": "^6.2.9",
"@storybook/addon-viewport": "^6.2.9",
"@storybook/react": "^6.2.9",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.1",
"@types/mqtt": "^2.5.0",
"@types/multer": "^1.4.5",
"@types/next": "^9.0.0",
"@types/node": "^15.6.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"storybook-addon-next-router": "^2.0.4",
"ts-node": "^10.0.0",
"ttypescript": "^1.5.12",
"typescript-transform-paths": "^2.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn prettier --write",
"yarn eslint --fix"
]
}
}