-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
70 lines (70 loc) · 1.98 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
{
"name": "moonstone",
"version": "2.1.0",
"private": true,
"scripts": {
"dev": "npm-run-all develop",
"develop": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "plop --plopfile generator/plopfile.js",
"prepare": "husky install",
"fmt": "npx npm-run-all format",
"format": "npx prettier --ignore-path .gitignore '!**/*.hbs' --write .",
"test": "npm-run-all test:*",
"test:lint": "npm-run-all test:lint:*",
"test:lint:js": "next lint",
"test:format": "npx prettier --check . --ignore-path .gitignore '!**/*.hbs'"
},
"lint-staged": {
"**/!(*.hbs)": "prettier --ignore-unknown"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.2",
"@fortawesome/free-brands-svg-icons": "6.4.2",
"@fortawesome/free-solid-svg-icons": "6.4.2",
"@fortawesome/react-fontawesome": "0.2.0",
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"axios": "^1.6.2",
"dayjs": "^1.11.10",
"framer-motion": "^7.5.3",
"jsqr": "^1.4.0",
"lottie-web": "^5.8.1",
"next": "^13.4.19",
"phoenix": "^1.7.7",
"qrcode": "^1.5.1",
"react": "^18.2.0",
"react-cool-inview": "^2.0.8",
"react-dom": "^18.2.0",
"react-map-gl": "^6.1.17",
"react-p5": "^1.3.21",
"sharp": "^0.32.6",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4"
},
"devDependencies": {
"@types/node": "18.7.18",
"@types/qrcode": "^1.5.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.0",
"eslint": "^8.31.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.2.1",
"npm-run-all": "^4.1.5",
"plop": "^3.1.1",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.1",
"tailwindcss": "^3.0.7",
"typescript": "4.8.3"
}
}