-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.67 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.67 KB
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@jsprismarine/website",
"sideEffects": false,
"private": true,
"type": "module",
"version": "0.0.1",
"cacheDirectories": [
".next/cache"
],
"prettier": "@nordcom/prettier",
"scripts": {
"build": "next build",
"dev": "next dev",
"clean": "rm -rf dist coverage storybook-static .turbo .next *.tsbuildinfo *.log",
"start": "next start -p $PORT",
"lint": "concurrently -i pnpm:lint:*",
"lint:next": "next lint --fix",
"lint:prettier": "prettier src/**/*.* --write",
"typecheck": "exit 0",
"format": "concurrently pnpm:format:*",
"format:eslint": "eslint --fix ./src/**/*.tsx",
"format:prettier": "prettier --write ./src/**/*.{tsx,scss}",
"test": "exit 0"
},
"keywords": [
"nordstar",
"nordcom",
"docs"
],
"author": {
"name": "Nordcom Group Inc.",
"email": "opensource@nordcom.io",
"url": "https://nordcom.io/"
},
"contributors": [
{
"name": "Filiph Siitam Sandström",
"email": "filiph@nordcom.io",
"url": "https://github.com/filiphsps/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/NordcomInc/nordstar.git",
"directory": "docs"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NordcomInc/nordstar/issues"
},
"homepage": "https://nordstar.nordcom.io/",
"dependencies": {
"@nordcom/nordstar": "0.0.62",
"@octokit/rest": "21.0.2",
"next": "14.2.17",
"pretty-bytes": "^6.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "9.0.1",
"sass": "1.80.6"
},
"devDependencies": {
"@nordcom/prettier": "0.1.1",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"autoprefixer": "10.4.20",
"concurrently": "9.1.0",
"eslint": "8.57.1",
"eslint-config-next": "14.2.17",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.4.3",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"prettier": "3.3.3",
"prettier-eslint": "16.3.0",
"typescript": "5.6.3"
}
}