This repository has been archived by the owner on Sep 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
72
73
74
75
76
77
{
"name": "@salte-io/quillie-components",
"version": "1.0.0",
"description": "React Components for https://quillie.net",
"source": "stories/index.tsx",
"main": "lib/main.js",
"module": "lib/module.js",
"types": "lib/types.d.ts",
"homepage": "https://github.com/salte-io/quillie-components",
"bugs": "https://github.com/salte-io/quillie-components/issues",
"contributors": [
"Ceci <[email protected]>"
],
"keywords": [
"quillie",
"react",
"components"
],
"repository": {
"type": "git",
"url": "https://github.com/salte-io/quillie-components.git"
},
"scripts": {
"build": "rimraf lib && parcel build && copyfiles -f stories/_variables.scss stories/_mixins.scss lib",
"build:storybook": "build-storybook",
"lint": "eslint stories/**/*.tsx",
"start": "start-storybook -p 6006",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.3.1",
"react-icons": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@parcel/packager-ts": "^2.0.0-rc.0",
"@parcel/transformer-image": "^2.0.0-rc.0",
"@parcel/transformer-sass": "^2.0.0-rc.0",
"@parcel/transformer-typescript-types": "^2.0.0-rc.0",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/builder-webpack5": "^6.3.7",
"@storybook/manager-webpack5": "^6.3.7",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.3.7",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-loader": "^8.2.2",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"lint-staged": "^11.1.2",
"parcel": "^2.0.0-rc.0",
"postcss": "^8.3.6",
"postcss-modules": "^4.2.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rimraf": "^3.0.2",
"sass": "^1.37.5",
"semantic-release": "^18.0.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^17.0.2"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}