-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.59 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@stellar-ui/stellar",
"description": "Stellar React component library",
"version": "0.0.0",
"main": "dist/index.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "yarn install && yarn clean && rollup -c",
"clean": "rm -rf ./dist",
"format": "prettier --write .",
"lint": "eslint .",
"storybook": "start-storybook -p 6006",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git://github.com/stellar-ui/stellar.git"
},
"keywords": [
"stellar",
"stellar-ui",
"stellar-react",
"react",
"reactjs",
"react-components",
"react-component",
"component-library"
],
"author": "Nima Dehnashi",
"license": "MIT",
"bugs": {
"url": "https://github.com/stellar-ui/stellar/issues"
},
"homepage": "https://github.com/stellar-ui/stellar#readme",
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@storybook/addon-docs": "^6.2.0-alpha.32",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.2.0-alpha.32",
"@storybook/react": "^6.2.0-alpha.32",
"@types/classnames": "^2.2.11",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.0.9",
"pinst": "^2.1.4",
"postcss": "^8.2.6",
"postcss-url": "^10.1.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.1",
"rollup": "^2.39.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"stylelint": "^13.11.0",
"tailwindcss": "^2.0.3",
"ts-loader": "^9.2.4",
"tslib": "^2.1.0",
"typescript": "^4.1.5"
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"dependencies": {
"classnames": "^2.2.6"
},
"publishConfig": {
"directory": "dist",
"registry": "https://npm.pkg.github.com/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}