-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.98 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
{
"name": "@apisuite/fe-base",
"version": "0.0.0-next.0",
"description": "ApiSuite core base that exports a provider of server settings, style system and internationalization.",
"author": "Bruno Morgado <[email protected]>",
"license": "MPL-2",
"homepage": "https://github.com/APISuite/fe-base#readme",
"bugs": {
"url": "https://github.com/APISuite/fe-base/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/APISuite/fe-base"
},
"main": "index.js",
"bin": {
"convert-translation": "scripts/convert-translation.js"
},
"watch": {
"dev-build": {
"patterns": [
"lib"
],
"extensions": "ts,tsx,scss,json",
"quiet": false
}
},
"scripts": {
"build": "rimraf ./dist && tsc && node scripts/move-build-files dist",
"prebuild": "npm run lint && npm t",
"dev-build": "tsc",
"dev": "npm-watch dev-build",
"lint": "eslint './lib/**/*.{js,ts,tsx}'",
"test": "jest -c ./jest.json",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@material-ui/core": "4.11.3",
"i18next": "20.2.1",
"react-i18next": "11.8.13"
},
"devDependencies": {
"@material-ui/core": "4.11.3",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@testing-library/react": "11.2.6",
"@types/jest": "26.0.22",
"@types/node": "14.14.37",
"@types/react": "17.0.2",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"eslint": "7.17.0",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"i18next": "20.2.1",
"jest": "26.6.3",
"jest-fetch-mock": "3.0.3",
"npm-watch": "0.9.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-i18next": "11.8.13",
"semantic-release": "17.4.2",
"ts-jest": "26.5.5",
"typescript": "4.1.3"
}
}