-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "studio-utils",
"version": "0.0.1",
"description": "Easy shared types",
"main": "./dist/index.js",
"directories": {
"dist": "dist"
},
"scripts": {
"build": "rimraf dist && microbundle-crl --format modern,cjs",
"type:check": "tsc -p ./tsconfig.json --noEmit",
"lint:check": "eslint './src/**/*.{js,ts}' --fix && prettier './src/**/*.{js,ts}' --check",
"lint:fix": "eslint './src/**/*.{js,ts}' --fix && prettier './src/**/*.{js,ts}' --write",
"test": "jest",
"postinstall": "rimraf dist && microbundle-crl --format modern,cjs"
},
"peerDependencies": {
"typescript": ">=4.8.3"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"cross-fetch": "^3.1.5",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.10",
"jest": "^29.5.0",
"microbundle-crl": "^0.13.11",
"prettier": "^2.7.1",
"ts-jest": "^29.0.5"
},
"dependencies": {
"date-fns": "^2.29.3",
"loglevel": "^1.8.1",
"loglevel-plugin-remote": "^0.6.8"
}
}