-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 3.44 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
{
"name": "sce-sim-grid",
"version": "0.5.0-rc1",
"main": "lib-cjs/index.js",
"module": "lib-esm/index.js",
"files": [
"lib-cjs",
"lib-esm",
"lib-umd"
],
"license": "MIT",
"scripts": {
"clean": "rm -rf lib-cjs && rm -rf lib-esm && rm -rf lib-umd",
"build": "yarn clean && yarn build:cjs && yarn build:esm && yarn build:umd",
"build:cjs": "npx tsc && yarn copy:css:cjs",
"build:esm": "npx tsc -m es6 --outDir lib-esm && yarn copy:css:esm",
"build:umd": "webpack --config webpack.config.js",
"copy:css:cjs": "copyfiles -u 1 src/**/*.css lib-cjs",
"copy:css:esm": "copyfiles -u 1 src/**/*.css lib-esm",
"build:babel": "yarn clean && yarn build:types && yarn build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rm -rf lib-es6-babel && babel src --out-dir lib-es6-babel --source-maps --copy-files --extensions \".js,.ts,.tsx\" --ignore __tests__,spec.js,test.js,__snapshots__",
"start": "cd example && yarn start",
"test": "jest",
"test:ts": "npx tsc",
"watch": "npx tsc -w",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"compile:schemas": "rm -rf src/schemas && yarn compile:schema:scesim && yarn compile:schema:dmn",
"compile:schema:scesim": "java -jar ./node_modules/jsonix-schema-compiler/lib/jsonix-schema-compiler-full.jar -generateJsonSchema -p scesim -d src/schemas data/scesim.xsd",
"compile:schema:dmn": "java -jar ./node_modules/jsonix-schema-compiler/lib/jsonix-schema-compiler-full.jar -generateJsonSchema -p dmn -d src/schemas data/DMN12.xsd"
},
"dependencies": {
"@patternfly/patternfly": "^2.45.4",
"@patternfly/react-core": "3.124.1",
"@patternfly/react-icons": "^3.14.25",
"@welldone-software/why-did-you-render": "^3.3.5",
"classnames": "^2.2.6",
"jsonix": "^3.0.0",
"react-infinite-scroll-component": "^5.0.4"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.0.19",
"@types/node": "12.11.6",
"@types/react": "16.9.9",
"@types/react-dom": "16.9.2",
"@types/react-infinite-scroll-component": "^4.2.4",
"@types/react-test-renderer": "^16.9.1",
"babel-loader": "^8.0.6",
"copyfiles": "^2.1.1",
"css-loader": "^3.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^4.2.0",
"jest": "^24.9.0",
"jsonix-schema-compiler": "^2.3.9",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-test-renderer": "^16.11.0",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-react": "^4.1.0",
"typescript": "3.7.0-dev.20191021",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "4.41.0",
"webpack-cli": "^3.3.9",
"webpack-node-externals": "^1.7.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}