-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.65 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
{
"name": "minesweeper1",
"version": "1.0.0",
"license": "UNLICENSED",
"private": true,
"author": {
"name": "Nadav Nuni",
"email": "nadavn@wix.com"
},
"scripts": {
"start": "yoshi start",
"precommit": "yoshi lint",
"pretest": "yoshi build",
"test": "yoshi test",
"posttest": "yoshi lint",
"release": "yoshi release"
},
"dependencies": {
"axios": "~0.16.0",
"classnames": "^2.2.6",
"ejs": "~2.5.0",
"express": "~4.15.0",
"i18next": "~8.4.0",
"i18next-xhr-backend": "~1.4.0",
"prop-types": "~15.6.0",
"react": "^15.6.1",
"react-addons-perf": "^15.4.2",
"react-dom": "15.6.1",
"react-i18next": "~4.6.0",
"wix-axios-config": "latest",
"wix-bootstrap-ng": "latest",
"wix-express-csrf": "latest",
"wix-express-require-https": "latest",
"wix-run-mode": "latest"
},
"devDependencies": {
"@types/chai": "~4.0.0",
"@types/ejs": "~2.5.0",
"@types/express": "~4.0.0",
"@types/i18next": "~8.4.0",
"@types/mocha": "~2.2.0",
"@types/node": "^8.0.0",
"@types/prop-types": "~15.5.0",
"@types/react": "~15.6.0",
"@types/react-dom": "~15.5.0",
"@types/react-i18next": "~4.6.0",
"chai": "~4.1.0",
"enzyme": "~2.9.0",
"husky": "~0.14.0",
"jsdom": "~11.2.0",
"jsdom-global": "~3.0.0",
"puppeteer": "^1.1.0",
"react-click-n-hold": "^1.0.6",
"react-test-renderer": "~15.6.0",
"typescript": "~2.4.0",
"wix-bootstrap-testkit": "latest",
"wix-config-emitter": "latest",
"yoshi": "^2.1.2"
},
"yoshi": {
"externals": {
"react": "React",
"react-dom": "ReactDOM"
},
"hmr": "auto"
}
}