-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "visitor-card",
"private": true,
"scripts": {
"dev": "npm run open-browser && next dev",
"open-browser": "open http://localhost:3000 || xdg-open http://localhost:3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"check-lint": "eslint . --ext js --ext jsx",
"format": "prettier --write .",
"check": "npm run check-types && npm run check-format && npm run check-lint && npm run build"
},
"dependencies": {
"g": "^2.0.1",
"next": "12.0.8",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-color-palette": "^6.2.0",
"react-dom": "17.0.2",
"react-form-with-constraints": "^0.18.0",
"react-router": "^6.2.1",
"sass": "^1.49.0",
"styled-components": "^5.3.3",
"vcards-js": "^2.10.0"
},
"devDependencies": {
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^8.7.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^6.0.0",
"lint-staged": "^12.3.1",
"prettier": "^2.5.1"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}