-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
98 lines (98 loc) · 3.28 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
91
92
93
94
95
96
97
98
{
"name": "polkadot-cloud",
"version": "0.2.14",
"license": "GPL-3.0-only",
"contributors": [
"Ross Bulat<[email protected]>",
"Nikolaos Kontakis<[email protected]>"
],
"description": "Polkadot Cloud",
"private": "true",
"scripts": {
"build:directory": "node builder/run.mjs -t directory:build",
"build:mock": "npm run build:mock --workspaces --if-present",
"clear": "npm run --workspaces clear && rm -rf node_modules coverage",
"prebuild": "node builder/run.mjs -t packages:prebuild",
"build": "npm run build --workspaces --if-present",
"postbuild": "node builder/run.mjs -t packages:postbuild",
"lint": "eslint './**' --fix && npx prettier --write . && npx stylelint '**/*.scss' --fix",
"patch": "node builder/run.mjs -t packages:patch",
"sandbox": "npm run dev -w sandbox",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/react": "^18.2.46",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^1.1.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.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.2.4",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"framer-motion": "^10.16.16",
"gulp": "^4.0.2",
"gulp-livereload": "^4.0.2",
"gulp-replace": "^1.1.4",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-strip-comments": "^2.6.0",
"gulp-typescript": "^6.0.0-alpha.1",
"minimist": "^1.2.8",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"rollup": "^4.9.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-uglify": "^6.0.4",
"sass": "^1.69.6",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"tiny-lr": "^2.0.0",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.1",
"yaml": "2.3.4"
},
"workspaces": [
"packages/cloud-core",
"packages/utils",
"packages/cloud-react",
"packages/assets",
"builder",
"sandbox"
],
"repository": {
"type": "git",
"url": "git+https://github.com/polkadot-cloud/library.git"
},
"keywords": [
"Polkadot",
"UI",
"Substrate"
],
"homepage": "https://github.com/polkadot-cloud/library#readme"
}