-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.75 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
78
79
80
{
"name": "fabrics",
"version": "0.1.2",
"description": "Structural react components library",
"repository": "https://github.com/siuvdlec/fabrics",
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"--lint": "manypkg check && eslint . --ext .ts,.tsx",
"lint": "eslint . --ext .ts,.tsx",
"lint-fix:eslint": "eslint . --ext .ts,.tsx --fix",
"lint-fix:manypkg": "manypkg fix",
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
"prettier-fix": "prettier --write \"**/*.{ts,tsx}\"",
"storybook": "start-storybook -p 6006",
"predeploy-storybook": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"postdeploy-storybook": "rm -r storybook-static",
"build-storybook": "build-storybook",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"tsc": "tsc",
"build-tsc": "tsc -p ./tsconfig.build.json",
"build-babel": "babel ./dist -d ./dist -s --config-file ./babel.config-build.json",
"build": "npm run build-tsc && ts-node scripts/release/build && npm run build-babel",
"postbuild": "prettier --loglevel=silent --write \"./dist/**/*.ts\"",
"prepublishOnly": "ts-node scripts/release/pre-publish",
"prerelease": "npm run build",
"release": "ts-node scripts/release/release"
},
"author": "Iacopo <[email protected]>",
"license": "MIT",
"homepage": "http://siuvdlec.github.io/fabrics",
"engines": {
"node": ">=16"
},
"main": "index.js",
"module": "index.js",
"typings": "index.d.ts",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vanilla-extract/babel-plugin": "^1.1.7",
"@vanilla-extract/webpack-plugin": "^2.1.11",
"babel-loader": "^8.2.5",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"eslint": "^8.22.0",
"eslint-config-facile": "^0.6.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-storybook": "^0.6.4",
"fp-ts": "^2.12.2",
"gh-pages": "^4.0.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.65.0"
},
"peerDependencies": {
"fp-ts": "^2.12",
"react": "^18.2.0",
"tslib": "^2.1.0"
},
"dependencies": {
"@vanilla-extract/css": "^1.7.2",
"@vanilla-extract/css-utils": "^0.1.2",
"@vanilla-extract/sprinkles": "^1.4.1",
"clsx": "^1.2.1"
}
}