-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.6 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
{
"name": "jsoninput",
"version": "0.0.25",
"description": "Form creation from JSONSchema input",
"main": "lib/index.js",
"types": "typings/jsoninput.d.ts",
"module": "lib/index.es2015.js",
"scripts": {
"clean": "rimraf dist lib",
"build:rollup": "cross-env NODE_ENV=production rollup -c",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --mode production",
"build:lib": "cross-env NODE_ENV=production babel src -d lib",
"build:view": "cross-env NODE_ENV=production rollup -c rollup-view.config.js",
"build": "yarn run clean && tsc && jest && yarn run build:rollup && yarn run build:view && yarn run cp:types",
"cp:types": "cp typings/views.es2015.d.ts lib/",
"start": "node dev-server.js",
"test": "jest"
},
"author": "CiGit",
"license": "MIT",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts,tsx}",
"!src/play/**"
],
"watchPathIgnorePatterns": [
"<rootDir>/lib/"
],
"moduleNameMapper": {
"^lodash-es$": "lodash"
}
},
"dependencies": {
"immer": "^3.2.0",
"jsonschema": "^1.2.4",
"lodash-es": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.17",
"@types/lodash-es": "^4.17.3",
"@types/prop-types": "^15.7.1",
"@types/react": "16.9.1",
"@types/react-dom": "^16.8.5",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^5.2.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.18.2",
"express": "^4.17.1",
"jest": "^24.8.0",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-testing-library": "^7.0.1",
"rimraf": "^3.0.0",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-filesize": "^6.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
},
"peerDependencies": {
"react": "^16.3.1",
"react-dom": "^16.3.1"
}
}