-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.04 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
78
79
80
{
"name": "frontend-template",
"private": true,
"scripts": {
"start": "run-p start:src start:locales",
"start:src": "snowpack dev --verbose",
"start:locales": "lingui extract --watch",
"build": "run-p build:src build:locales",
"build:src": "snowpack build",
"build:locales": "lingui compile",
"serve": "server build",
"prepare": "snowpack prepare"
},
"dependencies": {
"@babel/core": "latest",
"@babel/preset-react": "latest",
"@babel/preset-typescript": "latest",
"@emotion/babel-plugin": "latest",
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@hookform/resolvers": "2.0.0",
"@lingui/cli": "latest",
"@lingui/conf": "latest",
"@lingui/core": "latest",
"@lingui/macro": "latest",
"@lingui/react": "latest",
"@lingui/snowpack-plugin": "3.5.0",
"@material-ui/core": "5.0.0-alpha.28",
"@material-ui/icons": "5.0.0-alpha.28",
"@snowpack/plugin-babel": "latest",
"@snowpack/plugin-dotenv": "latest",
"@snowpack/plugin-optimize": "latest",
"@snowpack/plugin-react-refresh": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/snowpack-env": "latest",
"babel-plugin-macros": "latest",
"dotenv": "latest",
"history": "latest",
"react": "latest",
"react-dom": "latest",
"react-hook-form": "latest",
"react-router": "6.0.0-beta.0",
"react-router-dom": "6.0.0-beta.0",
"snowpack": "latest",
"typescript": "latest",
"zod": "3.0.0-alpha.33"
},
"devDependencies": {
"npm-run-all": "4.1.5",
"server": "1.0.32"
},
"lingui": {
"locales": [
"en",
"ky"
],
"catalogs": [
{
"path": "locales/{locale}",
"include": [
"./**/*"
],
"exclude": [
".git/**",
"node_modules/**",
"public/**",
"build/**",
".build/**",
"types/**"
]
}
],
"format": "po",
"formatOptions": {
"origins": false
},
"compileNamespace": "es"
}
}