forked from enketo/enketo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
115 lines (115 loc) · 3.7 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
109
110
111
112
113
114
115
{
"name": "enketo",
"description": "Enketo Web Forms Fork for OpenClinica",
"repository": "https://github.com/OpenClinica/enketo-oc",
"private": true,
"workspaces": {
"packages": [
"packages/openrosa-xpath-evaluator",
"packages/enketo-transformer",
"packages/enketo-core",
"packages/enketo-express",
"examples/*"
],
"nohoist": [
"**/bootstrap-datepicker",
"**/vex-js"
]
},
"scripts": {
"build": "yarn workspaces run build",
"lint": "eslint .",
"test": "yarn workspaces run test",
"postinstall": "yarn build"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.11",
"@baladins/grunt-nodemon": "^0.4.6",
"@types/chai": "^4.3.5",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.5",
"@types/sinon": "^10.0.16",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitest/coverage-istanbul": "^0.34.3",
"@vitest/runner": "^0.34.3",
"@vitest/utils": "^0.34.3",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"esbuild": "^0.16.17",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-vitest": "^0.2.8",
"grunt": "^1.6.1",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-eslint": "^24.3.0",
"grunt-i18next": "^0.2.0",
"grunt-karma": "^4.0.2",
"grunt-mocha-test": "^0.13.3",
"grunt-sass": "^3.1.0",
"grunt-shell": "^3.0.1",
"grunt-shell-spawn": "^0.4.0",
"istanbul": "^0.4.5",
"istanbul-lib-instrument": "^6.0.0",
"istanbul-reporter-shield-badge": "^1.2.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-esbuild": "^2.2.5",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"load-grunt-tasks": "^5.1.0",
"markdown-eslint-parser": "^1.2.1",
"mocha": "^9.2.2",
"nan": "^2.17.0",
"node-sass": "^9.0.0",
"nyc": "^15.1.0",
"playwright": "1.25.0",
"prettier": "^3.0.3",
"puppeteer": "^21.1.0",
"rimraf": "^3.0.2",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"time-grunt": "^2.0.0",
"typescript": "^5.2.2",
"vite": "^4.5.3",
"vite-node": "^1.5.0",
"vite-plugin-node": "^3.1.0",
"vitest": "^0.34.6",
"webpack": "^5.88.2"
},
"resolutions": {
"nan": "^2.17.0",
"libxslt/nan": "^2.17.0",
"node1-libxmljsmt-myh/nan": "^2.17.0"
},
"engines": {
"node": ">=18 <21",
"npm": "please-use-yarn",
"yarn": ">= 1.22.19 <2"
},
"volta": {
"node": "20.12.2",
"yarn": "1.22.22"
}
}