-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "femtostats",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:statico/femtostats.git",
"author": "Ian Langworth <[email protected]>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "next dev",
"build": "next build",
"start": "pnpm knex:migrate && node server.js",
"lint": "next lint",
"knex:migrate": "knex migrate:latest",
"knex:seed": "knex seed:run"
},
"dependencies": {
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@recoiljs/refine": "0.1.1",
"chart.js": "4.4.3",
"dotenv": "16.4.5",
"framer-motion": "11.2.10",
"glob-to-regexp": "0.4.1",
"husky": "9.0.11",
"i18n-iso-countries": "7.11.2",
"isomorphic-unfetch": "4.0.2",
"knex": "3.1.0",
"luxon": "3.4.4",
"maxmind": "4.3.20",
"next": "14.2.4",
"react": "18.3.1",
"react-chartjs-2": "5.2.0",
"react-dom": "18.3.1",
"react-icons": "5.2.1",
"react-world-flags": "1.6.0",
"recoil": "0.7.7",
"recoil-sync": "0.2.0",
"sqlite3": "5.1.7",
"swr": "2.2.5",
"tar-stream": "^3.1.7",
"ua-parser-js": "1.0.38",
"uglify-js": "3.18.0",
"unfetch": "5.0.0",
"yup": "1.4.0"
},
"devDependencies": {
"@types/chart.js": "2.9.41",
"@types/glob-to-regexp": "0.4.4",
"@types/luxon": "3.4.2",
"@types/node": "20.14.2",
"@types/react": "18.3.3",
"@types/react-world-flags": "1.4.5",
"@types/tar-stream": "3.1.3",
"@types/ua-parser-js": "0.7.39",
"@types/uglify-js": "3.17.5",
"lint-staged": "15.2.7",
"prettier": "3.3.2",
"top-user-agents": "2.1.22",
"typescript": "5.4.5"
},
"lint-staged": {
"*.{js,css,md,ts,tsx}": "prettier --write"
},
"packageManager": "[email protected]+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}