-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.54 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
{
"name": "@intermine/chromatin",
"version": "0.0.27",
"description": "Intermine's component library",
"main": "./src/index.ts",
"scripts": {
"build:types": "tsc",
"build:babel": "babel src --out-dir dist --extensions \".ts,.tsx\" --config-file ./.build.babelrc",
"watch:build:types": "tsc --watch",
"watch:build:babel": "npm run build:babel --watch",
"dev": "concurrently \"npm run watch:build:babel\" \"npm run watch:build:types\" ",
"build": "concurrently \"npm run build:babel\" \"npm run build:types\"",
"prod": "npm run build",
"lint:types": "eslint . --ext .ts,.tsx",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intermine/chromatin.git"
},
"author": "InterMine Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/intermine/chromatin/issues"
},
"keywords": [
"library",
"react-library",
"react",
"react-component",
"chromatin",
"intermine",
"intermine chromatin",
"react component library"
],
"homepage": "https://github.com/intermine/chromatin#readme",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/react": "^6.3.7",
"@testing-library/dom": "^8.2.0",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/clone-deep": "^4.0.1",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^27.1.0",
"babel-loader": "^8.2.2",
"child_process": "^1.0.2",
"concurrently": "^6.2.1",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-unicorn": "^35.0.0",
"fs-extra": "^10.0.0",
"jest": "^27.1.0",
"prettier": "^2.4.1",
"remixicon": "^2.5.0",
"typescript": "^4.4.2",
"util": "^0.12.4"
},
"peerDependencies": {
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"react": "17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@popperjs/core": "^2.10.1",
"@types/react-modal": "^3.13.1",
"@types/react-transition-group": "^4.4.3",
"@types/styled-components": "^5.1.14",
"clone-deep": "^4.0.1",
"clsx": "^1.1.1",
"deepmerge": "^4.2.2",
"jss": "^10.7.1",
"nanoid": "^3.1.28",
"react-jss": "^10.7.1",
"react-modal": "^3.14.3",
"react-select": "^5.0.0",
"react-transition-group": "^4.4.2",
"styled-components": "^5.3.1",
"use-debounce": "^7.0.0"
}
}