forked from accordproject/web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.03 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
{
"name": "@accordproject/ui-concerto",
"version": "0.97.0",
"private": false,
"dependencies": {
"@accordproject/concerto-core": "^1.0.0-alpha.2",
"@babel/runtime": "^7.10.3",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.set": "^4.3.2",
"lodash.topath": "^4.5.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"semantic-ui-calendar-react": "^0.15.3",
"semantic-ui-react": "^0.88.2"
},
"scripts": {
"test": "SKIP_PREFLIGHT_CHECK=true react-scripts test --coverage --env=jest-environment-jsdom-sixteen",
"build": "npx rollup -c --sourcemap",
"build:watch": "npx rollup -c --sourcemap -w",
"build:prod": "npx rollup -c",
"fix:js": "npx eslint --fix ./src/",
"lint:js": "npx eslint ./src/",
"lint:style": "npx stylelint ./src/",
"fix:style": "npx stylelint ./src/ --fix",
"start:docs": "docz dev",
"build:docs": "docz build"
},
"repository": {
"type": "git",
"url": "https://github.com/accordproject/web-components",
"directory": "packages/ui-concerto"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "CI=true yarn test --passWithNoTests"
}
},
"devDependencies": {
"@babel/cli": "7.13.10",
"@babel/core": "7.13.10",
"@babel/plugin-transform-runtime": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/preset-react": "7.10.1",
"@rollup/plugin-babel": "5.0.4",
"@rollup/plugin-commonjs": "12.0.0",
"@rollup/plugin-node-resolve": "8.1.0",
"@testing-library/jest-dom": "5.5.0",
"@testing-library/react": "10.0.3",
"@testing-library/react-hooks": "3.2.1",
"@testing-library/user-event": "10.1.0",
"autoprefixer": "9.7.6",
"docz": "2.3.1",
"husky": "4.2.5",
"jest-environment-jsdom-sixteen": "1.0.3",
"lint-staged": "10.1.7",
"npm-run-all": "4.1.5",
"postcss-preset-env": "6.7.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"react-test-renderer": "16.13.1",
"recursive-copy": "2.0.10",
"rimraf": "3.0.2",
"rollup": "2.7.3",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-filesize": "7.0.0",
"rollup-plugin-includepaths": "0.2.3",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-peer-deps-external": "2.2.2",
"rollup-plugin-postcss": "3.1.1",
"rollup-plugin-stylelint": "1.0.0",
"rollup-plugin-terser": "5.3.0",
"stylelint": "13.3.3",
"stylelint-config-standard": "20.0.0",
"stylelint-order": "4.0.0"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"files": [
"lib"
],
"engines": {
"node": ">=10"
}
}