-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "@sb1/ffe-messages-react",
"version": "2.0.5",
"license": "MIT",
"author": "SpareBank 1",
"files": [
"lib",
"es",
"types"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "ssh://git@github.com:SpareBank1/designsystem.git"
},
"scripts": {
"build": "ffe-buildtool tsc",
"build:es": "ffe-buildtool tsc --es",
"lint": "eslint src --ext ts,tsx",
"lint:fix": "eslint src --fix --ext ts,tsx",
"test": "ffe-buildtool jest",
"test:watch": "ffe-buildtool jest --watch"
},
"dependencies": {
"@sb1/ffe-icons-react": "^11.0.19",
"@sb1/ffe-messages": "^2.0.3",
"classnames": "^2.3.1"
},
"devDependencies": {
"@sb1/ffe-buildtool": "^0.10.0",
"eslint": "^8.57.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"react": ">=18.2.0"
},
"publishConfig": {
"access": "public"
}
}