-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.8 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
{
"name": "@wix/wut-exercise",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"author": {
"name": "nitayneeman",
"email": "[email protected]"
},
"scripts": {
"start": "yoshi-flow-editor start",
"build": "yoshi-flow-editor build",
"lint": "yoshi-flow-editor lint",
"test": "yoshi-flow-editor test",
"test:watch": "yoshi-flow-editor test --watch",
"posttest": "npm run lint",
"add": "yoshi-flow-editor add"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,scss}": "yoshi-flow-editor lint"
},
"eslintConfig": {
"extends": "yoshi/editor-flow",
"globals": {
"Wix": false
}
},
"jest": {
"preset": "yoshi-flow-editor"
},
"dependencies": {
"@wix/wix-base-ui": "^3.900.0",
"@wix/bi-logger-editor-flow-template": "^1.0.49",
"react": "~16.13.0",
"react-dom": "~16.13.0",
"wix-ui-tpa": "^2.13.1",
"yoshi-flow-editor": "^5.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.15",
"@types/react-dom": "^16.9.5",
"@wix/perfer": "^1.0.0",
"@wix/perfer-sled": "^1.0.0",
"@wix/perfer-viewer-utils": "^1.0.0",
"@wix/wix-experiments": "^3.0.442",
"husky": "~4.2.1",
"lint-staged": "^10.0.7",
"lodash": "^4.17.11",
"puppeteer": "^5.5.0",
"@wix/sled-test-runner": "^1.0.819",
"typescript": "^4.1.2",
"yoshi-style-dependencies": "^5.0.0"
},
"perfer": {
"preset": "yoshi-flow-editor/perfer-preset"
},
"wix": {
"artifact": {
"groupId": "com.wixpress",
"artifactId": "wut-exercise",
"targets": {
"static": true
}
}
},
"wallaby": {
"autoDetect": true
}
}