-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.17 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@singularity/root",
"description": "Yet another React UI.",
"version": "4.4.0",
"license": "MIT",
"private": true,
"main": "./index.ts",
"engines": {
"node": "18"
},
"scripts": {
"build": "rm -Rf ./dist && rollup -c && yarn build:copy && yarn build:package && yarn build:clean",
"build:clean": "rm -Rf ./dist/node_modules",
"build:copy": "sh ./scripts/build/copyPublicFiles.sh",
"build:dev": "rm -Rf ./dist && rollup -c && yarn build:complete",
"build:package": "node ./scripts/build/generatePackageJson.js",
"dev": "start-storybook --no-open -p 6006",
"setup": "husky install",
"setup:vscode": "yarn dlx @yarnpkg/sdks vscode",
"test": "yarn test:lint && yarn test:type",
"test:lint": "eslint --ext js,jsx,ts,tsx .",
"test:type": "tsc",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=./config/jest.config.js",
"test:unit:watch": "yarn test:unit --watch"
},
"dependencies": {
"ramda": "0.28.0",
"react-select": "5.7.0",
"remark-parse": "10.0.1",
"remark-slate": "1.8.6",
"sha1": "1.1.1",
"slate": "0.87.0",
"slate-history": "0.86.0",
"slate-react": "0.87.1",
"tslib": "2.4.1",
"unified": "10.1.2"
},
"devDependencies": {
"@babel/core": "7.20.5",
"@babel/preset-react": "7.18.6",
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@fontsource/poppins": "4.5.10",
"@ivangabriele/commitlint-config": "1.0.6",
"@ivangabriele/eslint-config-typescript-react": "5.0.0",
"@ivangabriele/prettier-config": "3.1.0",
"@ivangabriele/semantic-release-config-dist": "2.1.0",
"@rollup/plugin-commonjs": "24.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-typescript": "10.0.1",
"@storybook/addon-a11y": "6.5.15",
"@storybook/addon-essentials": "6.5.15",
"@storybook/builder-webpack5": "6.5.15",
"@storybook/manager-webpack5": "6.5.15",
"@storybook/react": "6.5.14",
"@testing-library/jest-dom": "5.16.5",
"@types/jabber": "1.2.0",
"@types/jest": "29.2.4",
"@types/node": "18.11.18",
"@types/ramda": "0.28.20",
"@types/react": "18.0.26",
"@types/sha1": "1.1.3",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"babel-loader": "9.1.0",
"bhala": "3.0.4",
"browser-assert": "1.2.1",
"codecov": "3.8.3",
"dumdum": "1.0.0-alpha.5",
"eslint": "8.30.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.7",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sort-destructure-keys": "1.4.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"esm-path": "1.0.1",
"gh-pages": "4.0.0",
"husky": "8.0.2",
"jabber": "1.4.0",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"microbundle": "0.15.1",
"prettier": "2.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "2.0.10",
"react-is": "18.2.0",
"rollup": "3.8.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-sizes": "1.0.4",
"storybook-addon-performance": "0.16.1",
"styled-components": "5.3.6",
"ts-jest": "29.0.3",
"typescript": "4.9.4",
"webpack": "5.75.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"styled-components": "^5.3.3"
},
"//": "https://github.com/okonet/lint-staged/issues/825#issuecomment-674575655",
"lint-staged": {
"*.{json,md,yaml,yml}": "prettier --write",
"*.{ts,tsx}": [
"yarn eslint --ext js,jsx,ts,tsx",
"bash -c 'yarn test:type'"
]
},
"packageManager": "[email protected]",
"prettier": "@ivangabriele/prettier-config",
"release": {
"extends": "@ivangabriele/semantic-release-config-dist"
}
}