-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.67 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
{
"name": "@adeira/abacus-kochka",
"version": "0.0.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "next dev --port=5002",
"build": "next build",
"start": "next start --port=5002",
"lint": "yarn jest --config=.jest-eslint.config.js",
"test": "yarn jest",
"fbt:manifest": "fbt-manifest --src=src --src=pages --enum-manifest=translations/enum_manifest.json --src-manifest=translations/src_manifest.json",
"fbt:collect": "fbt-collect --options=__self --pretty --manifest < translations/src_manifest.json > translations/source_strings.json",
"fbt:translate": "fbt-translate --source-strings=translations/source_strings.json --pretty --translations translations/in/*.json --output-dir=translations/out --jenkins",
"fbt": "yarn run fbt:manifest && yarn run fbt:collect && yarn run fbt:translate"
},
"dependencies": {
"@adeira/csp": "^0.1.0",
"@adeira/hooks": "^0.3.0",
"@adeira/icons": "^2.2.0",
"@adeira/js": "^2.1.1",
"@adeira/relay": "^9.0.0",
"@adeira/sx": "^0.30.0",
"@adeira/sx-design": "^0.33.0",
"@sentry/nextjs": "^7.118.0",
"babel-plugin-fbt": "^1.0.0",
"babel-plugin-fbt-runtime": "^1.0.0",
"fbt": "^1.0.2",
"globby": "^14.0.2",
"graphql": "^16.9.0",
"next": "^14.2.5",
"next-compose-plugins": "^2.2.1",
"next-plugin-custom-babel-config": "^1.0.5",
"next-seo": "^6.5.0",
"next-transpile-modules": "^10.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@adeira/babel-preset-adeira": "^4.0.0",
"@fbtjs/default-collection-transform": "^1.0.0",
"@playwright/test": "^1.45.0",
"@testing-library/react": "^15.0.7"
}
}