-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.31 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
81
82
83
84
85
86
87
{
"name": "@setu/crucible-icons",
"version": "1.0.14",
"description": "Crucible Icons package",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/src/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/SetuHQ/crucible-icons.git"
},
"scripts": {
"build:cjs": "BABEL_ENV=commonjs babel ./src --config-file ./.babelrc --out-dir ./dist/cjs --extensions .ts,.tsx --copy-files --no-copy-ignored",
"build:esm": "BABEL_ENV=es6 babel ./src --config-file ./.babelrc --out-dir ./dist/esm --extensions .ts,.tsx --copy-files --no-copy-ignored",
"build:types": "tsc --outDir dist/types",
"prebuild": "rimraf dist && node ./scripts/build.js",
"build": "yarn run build:esm && yarn run build:cjs && yarn build:types && prettier --write ./src/**",
"watch": "tsc -w",
"storybook": "start-storybook -p 5555",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint -c .eslintrc.js --ext .ts,.tsx",
"cz": "git cz",
"build-storybook": "build-storybook -c .storybook -o public",
"prepare": "husky install",
"pre-commit": "prettier --write ./src/** && prettier --write --parser html '**/*.svg'",
"czcheck": "node scripts/no-manual-committing"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "^7.18.13",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "7.18.10",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@react-theming/storybook-addon": "^1.1.7",
"@storybook/addon-docs": "6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"fictoan-react": "0.41.20",
"@storybook/addons": "^6.5.10",
"@storybook/react": "6.5.10",
"@storybook/theming": "^6.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.2",
"@types/jest": "^28.1.8",
"@types/react-test-renderer": "^18.0.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"babel-jest": "^29.0.1",
"babel-loader": "8.2.5",
"eslint": "^8.21.0",
"eslint-config-next": "^12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"git-cz": "^4.9.0",
"prettier": "2.7.1",
"jest": "28.1.3",
"jest-environment-jsdom": "^29.0.1",
"jest-resolve": "28.1.3",
"jest-styled-components": "7.1.0",
"husky": "^8.0.1",
"babel-plugin-styled-components": "2.0.7",
"@types/node": "18.6.4",
"@types/react": "17.0.17",
"@types/react-dom": "17.0.6",
"@types/styled-components": "5.1.25",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "5.3.0"
},
"peerDependencies": {
"react": ">=17",
"styled-components": "^5.3.0"
}
}