-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.93 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
{
"name": "@nolmungshemung/ui-kits",
"version": "0.0.10",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/nolmungshemung/ui-kits.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "NMSM <nmsm@dev.com>",
"license": "MIT",
"dependencies": {
"@stitches/react": "^1.2.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@storybook/addon-actions": "^6.4.8",
"@storybook/addon-docs": "^6.4.9",
"@storybook/addon-essentials": "^6.4.8",
"@storybook/addon-links": "^6.4.8",
"@storybook/react": "^6.4.8",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-loader": "^8.2.3",
"chromatic": "^6.2.0",
"eslint": "^8.4.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "2.5.1",
"storybook-addon-designs": "^6.2.0",
"typescript": "^4.4.4"
},
"scripts": {
"start": "parcel ./public/index.html -d build",
"compile": "tsc",
"prepare": "npm run-script compile",
"lint": "eslint \"./src/**/*.{ts,tsx,js,jsx}\" --ignore-path .eslintignore || true",
"lint:fix": "eslint --fix \"./src/**/*.{ts,tsx,js,jsx}\" --ignore-path .eslintignore || true",
"prettier": "prettier --write --config ./.prettierrc \"./src/**/*.{ts,tsx,js,jsx}\" || true",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "yarn eslint --ignore-path .eslintignore"
}
}