forked from adobe-uxp/devtools-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "uxp-developer-tools",
"version": "1.5.1",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/uxp-templates-pack/*"
],
"nohoist": []
},
"scripts": {
"lint": "eslint --ext \".js,.js6,.jsx,.ts,.tsx\" ./",
"lint-fix": "eslint --ext \".js,.js6,.jsx,.ts,.tsx\" ./ --fix",
"cleanup": "node scripts/cleanup.js"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"@babel/core": "^7.10.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.21.4",
"jest": "^26.4.2",
"jest-electron": "^0.1.11",
"jest-html-reporter": "^3.1.3",
"nyc": "^15.1.0"
},
"dependencies": {
"@babel/plugin-syntax-jsx": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/runtime": "^7.11.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0"
},
"engines": {
"node": ">=12.19.0"
}
}