-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.16 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
{
"name": "gdc-dform-viewer",
"version": "1.0.0",
"description": "Library used to render forms based on order types dynamic form schema",
"author": "icasardila",
"license": "MIT",
"repository": "fullstacklabs/gdc-dform-viewer",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jest-environment-jsdom-sixteen",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"format": "prettier --write \"**/*.(js|jsx)\""
},
"peerDependencies": {
"date-fns": "^2.21.3",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^12.8.3",
"cross-env": "^7.0.3",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^2.2.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "^3.4.4",
"user-event": "^4.0.0"
},
"files": [
"dist"
],
"dependencies": {
"date-fns": "^2.22.1",
"formik": "^2.2.9",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"yup": "^0.32.9"
}
}