-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.78 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
{
"name": "@adeira/abacus-backoffice",
"version": "0.0.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "next dev --port=5001",
"build": "next build",
"start": "next start --port=5001",
"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",
"relay": "adeira-relay-compiler"
},
"dependencies": {
"@adeira/hooks": "^0.3.0",
"@adeira/icons": "^1.1.0",
"@adeira/js": "^2.1.1",
"@adeira/react-auth": "^0.1.0",
"@adeira/relay": "^6.0.0",
"@adeira/sx": "^0.29.1",
"@adeira/sx-design": "^0.28.0",
"@next/bundle-analyzer": "^12.1.6",
"d3": "^7.4.4",
"fbt": "^1.0.0",
"graphql": "^16.5.0",
"immutable": "^4.1.0",
"next": "^12.1.6",
"next-compose-plugins": "^2.2.1",
"next-plugin-custom-babel-config": "^1.0.5",
"next-transpile-modules": "^9.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recoil": "^0.7.3"
},
"devDependencies": {
"@adeira/babel-preset-adeira": "^4.0.0",
"@fbtjs/default-collection-transform": "^1.0.0",
"@playwright/test": "^1.22.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"babel-plugin-fbt": "^1.0.0",
"babel-plugin-fbt-runtime": "^1.0.0",
"playwright": "^1.22.2"
}
}