-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.57 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
{
"name": "enote-client",
"version": "1.0.2",
"license": "MIT",
"private": true,
"author": {
"name": "Isaiah Awotide",
"email": "awotideisaiah@yandex.com"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"scripts": {
"start": "yoshi start",
"build": "yoshi build",
"test": "yoshi test",
"lint": "yoshi lint",
"posttest": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,scss,less}": "yoshi lint"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/express-session": "~1.17.0",
"@types/node": "^14.0.26",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"husky": "^4.2.5",
"jest-yoshi-preset": "^4.87.0",
"lint-staged": "^10.2.11",
"puppeteer": "^5.2.1",
"typescript": "~3.9.7",
"yoshi": "^4.87.0",
"yoshi-style-dependencies": "^4.71.0"
},
"dependencies": {
"@testing-library/react": "^10.4.7",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"express": "^4.17.1",
"i18next": "^19.6.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.7.0",
"react-responsive": "^8.1.0",
"react-router-dom": "^5.2.0",
"velocity": "~0.7.2",
"wix-style-react": "^8.32.0",
"yoshi-template-intro": "^4.87.0"
},
"jest": {
"preset": "jest-yoshi-preset"
},
"yoshi": {
"projectType": "app",
"externals": {
"react": "React",
"react-dom": "ReactDOM"
},
"hmr": "auto"
},
"eslintConfig": {
"extends": "yoshi"
}
}