-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.26 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.26 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
{
"private": true,
"name": "core",
"description": "The packages that make up the Solar Core",
"scripts": {
"build": "pnpm build -r",
"format": "pnpm lint:fix && pnpm prettier",
"lint": "eslint packages/*/src --ext .ts --max-warnings 0",
"lint:fix": "eslint packages/*/src --ext .ts --fix",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./packages/**/*.{ts,js,json,md}\""
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"@commitlint/cli": "14.1.0",
"@commitlint/config-conventional": "14.1.0",
"@oclif/dev-cli": "1.26.0",
"@solar-network/crypto": "workspace:*",
"@types/babel__core": "7.1.16",
"@types/create-hash": "1.2.2",
"@types/js-yaml": "4.0.4",
"@types/node": "16.11.6",
"@types/prettier": "2.4.1",
"@types/rimraf": "3.0.2",
"@types/uuid": "8.3.1",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"babel-loader": "8.2.3",
"capture-console": "1.0.1",
"chalk": "4.1.2",
"create-hash": "1.2.0",
"cross-env": "7.0.3",
"del-cli": "4.0.1",
"depcheck": "1.4.2",
"env-paths": "2.2.1",
"eslint": "8.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"expand-home-dir": "0.0.3",
"fs-extra": "10.0.0",
"get-port": "6.0.0",
"glob": "7.2.0",
"husky": "7.0.4",
"js-yaml": "4.1.0",
"lint-staged": "11.2.6",
"moment-timezone": "0.5.35",
"npm-check-updates": "11.8.5",
"prettier": "2.4.1",
"prompts": "2.4.2",
"rimraf": "3.0.2",
"sinon": "11.1.2",
"tmp": "0.2.1",
"typedoc": "0.22.17",
"typescript": "4.4.4",
"typesync": "0.8.0",
"uuid": "8.3.2",
"webpack": "5.80.0"
},
"workspaces": [
"packages/*",
"plugins/*"
],
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"overrides": {
"got@<11.8.5": ">=11.8.5",
"browserslist@>=4.0.0 <4.16.5": ">=4.16.5"
}
}
}