-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.87 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
{
"title": "Collector Portal Framework",
"name": "collector-portal-framework",
"version": "20.7.18",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/collector-bank/collector-portal-framework.git"
},
"devDependencies": {
"@sambego/storybook-state": "2.0.1",
"@storybook/addon-knobs": "5.3.18",
"@storybook/addon-notes": "5.3.18",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "5.3.18",
"@storybook/storybook-deployer": "2.8.5",
"@testing-library/react": "10.0.4",
"@types/jest": "25.2.1",
"@types/node": "13.11.1",
"@types/react": "16.9.34",
"@types/react-autosuggest": "9.3.13",
"@types/react-datepicker": "^3.0.2",
"@types/react-dom": "16.9.7",
"@types/react-modal": "3.10.5",
"@types/react-router-dom": "5.1.5",
"@types/react-sidebar": "3.0.0",
"@types/uniqid": "4.1.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "7.21.4",
"eslint-plugin-react-hooks": "4.1.2",
"eslint-plugin-jsx-a11y": "6.3.1",
"copyfiles": "2.2.0",
"jest": "25.5.4",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.1.2",
"react-scripts": "3.4.1",
"rimraf": "3.0.2",
"ts-jest": "25.4.0",
"typescript": "4.0.3"
},
"dependencies": {
"@emotion/core": "10.0.28",
"@emotion/styled": "10.0.27",
"date-fns": "2.12.0",
"emotion-theming": "10.0.27",
"glamor": "^2.20.40",
"polished": "3.6.0",
"react-autosuggest": "^10.0.2",
"react-css-collapse": "4.0.6",
"react-datepicker": "2.14.1",
"react-formatted-number-input": "2.0.0",
"react-modal": "3.11.2",
"react-motion": "0.5.2",
"react-sidebar": "3.0.2",
"uniqid": "^5.2.0",
"collui": "^1.6.7"
},
"peerDependencies": {
"react-dom": ">=16.8",
"react-router-dom": ">=5.0.0",
"react": ">=16.8"
},
"scripts": {
"start": "start-storybook -p 9500",
"clean": "rimraf dist",
"copy-static-files": "copyfiles -u 1 \"src/**/*\" -e \"**/*.{ts,tsx}\" dist",
"transpile": "tsc",
"build": "npm run clean && npm run copy-static-files && npm run transpile",
"prettier": "prettier --write 'src/**/*.{ts,tsx}'",
"deploy-demo": "storybook-to-ghpages",
"watch": "npm run build -- --watch",
"prepare": "npm run build",
"test": "jest",
"test-watch": "jest --watch"
}
}