-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.14 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
{
"name": "@alfalab/icons",
"version": "3.320.0",
"description": "Design System UI Icons",
"main": "index.js",
"repository": "[email protected]:core-ds/icons.git",
"license": "MIT",
"private": false,
"scripts": {
"build": "./bin/build.sh",
"generate": "yarn compile && yarn format-icons",
"compile": "TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/generate.ts --target=icon",
"format-icons": "prettier --write \"./packages/**/*.{ts,tsx}\" --loglevel warn",
"lint": "eslint ./scripts/ --ext .ts,.tsx",
"generate-json": "TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/generate-json.ts",
"ci": "./bin/ci.sh"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-auto-install": "^2.0.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^4.0.0",
"@types/camelcase": "^5.2.0",
"@types/node": "^13.9.1",
"@types/react": "^18.0.26",
"@types/svgo": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"arui-presets-lint": "^4.0.0",
"axios": "^0.21.1",
"camelcase": "^5.3.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-sort-class-members": "^1.6.0",
"lerna": "^3.20.2",
"path": "^0.12.7",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^2.1.0",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-terser": "^5.3.0",
"style-to-js": "^1.1.10",
"stylelint": "^13.2.1",
"svgo": "^1.3.2",
"ts-node": "^8.6.2",
"tslib": "^2.0.0",
"typescript": "^3.8.3",
"ui-primitives": "^25.1.0",
"util": "^0.12.2"
},
"lint-staged": {
"concurrent": true,
"linters": {
"scripts/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add",
"eslint"
]
}
}
}