-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
{
"name": "polkadot-ui",
"version": "0.3.1",
"license": "MIT",
"description": "Polkadot UI",
"private": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/polkadot-ui/library.git"
},
"keywords": [
"Polkadot",
"UI",
"Substrate"
],
"homepage": "https://polkadot-ui.info",
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"build": "pnpm --parallel --filter \"./**\" build",
"clear": "pnpm run --parallel clear && rm -rf node_modules coverage",
"lint": "eslint './**' --fix && npx prettier --write . && npx stylelint '**/*.scss' --fix",
"sandbox": "pnpm --filter ./sandbox run dev",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prefer-arrow-functions": "^3.3.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.2.0",
"framer-motion": "^11.2.10",
"gulp": "^5.0.0",
"gulp-livereload": "^4.0.2",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-strip-comments": "^2.6.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^9.0.11",
"minimist": "^1.2.8",
"postcss": "^8.4.38",
"prettier": "^3.3.0",
"prettier-plugin-organize-imports": "^3.2.4",
"rollup": "^4.18.0",
"sass": "^1.77.4",
"stylelint": "^16.6.1",
"stylelint-config-standard-scss": "^13.1.0",
"tiny-lr": "^2.0.0",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"yaml": "^2.4.3"
},
"workspaces": [
"packages/utils",
"packages/ui-core",
"packages/ui-react",
"packages/assets",
"sandbox"
]
}