-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.9 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
{
"name": "@profteam/modal",
"version": "v0.2.2",
"description": "Modals for fast development",
"module": "esm/index.js",
"license": "MIT",
"peerDependencies": {
"prop-types": "^15.7.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-is": "^16.9.0",
"react-modal": "^3.9.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.16.5",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-jest": "^26.0.0",
"html-loader": "3.0.1",
"html-webpack-plugin": "5.5.0",
"jest": "^27.4.7",
"prop-types": "^15.7.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-is": "^16.9.0",
"react-modal": "^3.9.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"scripts": {
"build": "babel src/ --out-dir esm/ --ignore **/__tests__,**/__mocks__",
"dev": "webpack-dev-server --mode development",
"test": "jest",
"test:coverage": "jest --coverageProvider=babel --collect-coverage",
"lint": "eslint --ext=.jsx,.js src examples/src --cache --cache-location .eslintcache"
}
}