forked from jdiehl/mx-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 963 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 963 Bytes
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
{
"name": "widgets",
"version": "0.0.0",
"private": true,
"workspaces": [
"widgets-native/*",
"widgets-web/*"
],
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"create:web": "node ./scripts/create-widget.js web",
"create:native": "node ./scripts/create-widget.js native"
},
"devDependencies": {
"@mendix/generator-widget": "^9.20.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"turbo": "^1.7.2",
"typescript": "^4.9.5",
"yeoman-environment": "^3.13.0"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "npm@8.19.2"
}