This repository has been archived by the owner on Oct 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.67 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
82
83
84
85
86
87
88
89
90
{
"name": "@jsprismarine/telemetry",
"version": "1.0.0",
"license": "MIT",
"private": false,
"sideEffects": false,
"type": "module",
"engines": {
"npm": ">=8",
"node": "20"
},
"cacheDirectories": [
".next/cache"
],
"prettier": "@nordcom/prettier",
"scripts": {
"prepare": "husky install",
"start": "next start -p $PORT",
"dev": "next dev",
"build": "next build",
"lint": "npm-run-all --parallel lint:**",
"lint:next": "next lint",
"lint:prettier": "prettier src/**/*.* --check",
"lint:types": "tsc --project tsconfig.json -noEmit",
"test": "npm-run-all --parallel test:*",
"test:jest": "jest --config jest.config.cjs --passWithNoTests"
},
"repository": "https://github.com/JSPrismarine/Telemetry",
"author": "Filiph Sandström <[email protected]>",
"contributors": [
{
"name": "Filiph Siitam Sandström",
"email": "[email protected]",
"url": "https://github.com/filiphsps/"
}
],
"browserslist": [
">0.5%",
"defaults",
"supports es6-module",
"supports css-grid"
],
"dependencies": {
"destyle.css": "4.0.0",
"moment": "2.29.4",
"mongoose": "7.6.3",
"new-github-issue-url": "1.0.0",
"next": "13.5.6",
"next-seo": "6.1.0",
"nprogress": "0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-syntax-highlighter": "15.5.0",
"recharts": "2.9.0",
"sass": "1.69.4",
"sharp": "0.32.6",
"styled-components": "6.1.0",
"swr": "2.2.4"
},
"devDependencies": {
"@nordcom/prettier": "0.1.1",
"@types/jest": "29.5.6",
"@types/mongoose": "5.11.96",
"@types/node": "20.8.9",
"@types/nprogress": "0.2.2",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"@types/react-syntax-highlighter": "15.5.9",
"@types/recharts": "1.8.26",
"@types/styled-components": "5.1.29",
"eslint": "8.52.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.0.2",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"nextBundleAnalysis": {
"budget": 248400,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 0,
"showDetails": false
}
}