-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.56 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
{
"name": "@luomus/laji-form",
"version": "15.1.24",
"description": "React module capable of building dynamic forms from Laji form json schemas",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"dist",
"test-export",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"start": "npx webpack serve",
"staging": "webpack-dev-server --content-base playground playground/app.js --host 0.0.0.0 --port 4010",
"build:lib": "rimraf lib && NODE_ENV=production tsc -p tsconfig.lib.json",
"build:dist": "rimraf dist && NODE_ENV=production webpack --config webpack.config.dist.js && rimraf dist/styles.js",
"build:tests": "rimraf test-export && NODE_ENV=production tsc -p tsconfig.test.json",
"build": "npm run build:lib && npm run build:dist && npm run build:tests",
"preversion": "npm run lint && npm run test:lightweight",
"version": "bin/update-changelog.sh",
"postversion": "npm publish",
"prepublishOnly": "npm run build && git push && git push --tags",
"lint": "eslint -c .eslintrc.prod.json src playground",
"test": "npx playwright test",
"test:docker": "npm run test:docker:build && npm run test:docker:run --",
"test:lightweight": "npx playwright test --project chromium",
"test:docker:build": "docker build -t laji-form-test -f test.Dockerfile .",
"test:docker:run": "docker run laji-form-test"
},
"keywords": [
"react-jsonschema-form",
"laji-form",
"luomus"
],
"author": "Olli Raitio <[email protected]>",
"repository": "https://github.com/luomus/laji-form.git",
"license": "MIT",
"dependencies": {
"@luomus/laji-map": "^5.0.2",
"@luomus/laji-validate": "^0.0.121",
"@rjsf/core": "~5.1.0",
"@rjsf/utils": "~5.1.0",
"@rjsf/validator-ajv6": "~5.1.0",
"@types/deep-equal": "^1.0.1",
"@types/memoizee": "^0.4.8",
"@types/react": "^16.14.10",
"@types/react-dom": "^16.9.13",
"@types/react-spinner": "^0.2.0",
"deep-equal": "^2.0.5",
"deepmerge": "^4.2.2",
"exif-js": "^2.3.0",
"immutability-helper": "^3.1.1",
"isomorphic-fetch": "^3.0.0",
"memoizee": "^0.4.15",
"moment": "^2.29.1",
"prop-types": "^15.5.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-inlinesvg": "^2.3.0",
"react-sortable-hoc": "^2.0.0",
"react-spinner": "^0.2.7",
"react-widgets": "^4.6.1",
"react-widgets-moment": "^4.0.30"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/jasmine": "^3.7.7",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"eslint-plugin-jasmine": "^4.1.2",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"mini-css-extract-plugin": "^2.1.0",
"notus": "^0.3.2",
"querystring": "^0.2.1",
"rimraf": "^2.5.4",
"style-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.41.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1",
"webpack-node-externals": "^3.0.0"
},
"optionalDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/react-bootstrap": "^0.32.22",
"react-bootstrap": "^0.33.1",
"react-bootstrap-5": "npm:react-bootstrap@^2.5.0"
},
"volta": {
"node": "20.10.0"
},
"publishConfig": {
"access": "public"
}
}