-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
138 lines (138 loc) · 3.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "ugnis",
"version": "1.0.66",
"description": "Ugnis - design system builder",
"author": "JulitorK",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "start-storybook -p 6006",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts",
"release:minor": "npm run test && npm run ts && npm run build && npm version patch && git add -A && git push && git push --tags && npm publish",
"postrelease:minor": "rimraf dist",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"test": "jest",
"ts": "tsc",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/react": "11.6.0",
"@emotion/styled": "11.6.0",
"@popperjs/core": "2.10.2",
"@styled-system/theme-get": "5.1.2",
"@types/lodash.mergewith": "4.6.6",
"copy-to-clipboard": "3.3.1",
"css-box-model": "1.2.1",
"downshift": "6.1.7",
"framer-motion": "5.3.0",
"lape": "*",
"lodash.mergewith": "4.6.2",
"react-data-grid": "7.0.0-beta.7",
"react-fast-compare": "3.2.0",
"react-icons": "4.3.1",
"react-remove-scroll": "2.4.3",
"styled-system": "5.1.5",
"tinycolor2": "1.4.2"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@emotion/jest": "11.6.0",
"@jest/types": "27.2.5",
"@pika/cli": "0.2.0",
"@pika/pack": "0.5.0",
"@pika/plugin-build-node": "0.9.2",
"@pika/plugin-build-types": "0.9.2",
"@pika/plugin-build-umd": "0.9.2",
"@pika/plugin-build-web": "0.9.2",
"@pika/plugin-bundle-types": "0.9.2",
"@pika/plugin-standard-pkg": "0.9.2",
"@pika/plugin-ts-standard-pkg": "0.9.2",
"@storybook/addon-a11y": "6.3.12",
"@storybook/addon-docs": "6.3.12",
"@storybook/react": "6.3.12",
"@testing-library/jest-dom": "5.15.0",
"@testing-library/react": "12.1.2",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "13.5.0",
"@types/chai": "4.2.22",
"@types/faker": "5.5.9",
"@types/jest": "27.0.2",
"@types/jest-axe": "3.5.3",
"@types/lodash.mergewith": "4.6.6",
"@types/react": "17.0.35",
"@types/react-dom": "17.0.11",
"@types/react-frame-component": "4.1.3",
"@types/styled-system": "5.1.13",
"@types/styled-system__theme-get": "5.0.2",
"@types/tinycolor2": "1.4.3",
"@web/test-runner": "0.13.22",
"axe-core": "4.3.5",
"babel-loader": "8.2.3",
"chai": "4.3.4",
"csstype": "3.0.10",
"faker": "5.5.3",
"formik": "2.2.9",
"jest": "27.3.1",
"jest-axe": "5.0.1",
"jest-environment-jsdom": "27.3.1",
"jest-matchmedia-mock": "1.1.0",
"jest-watch-typeahead": "1.0.0",
"prettier": "2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-frame-component": "5.1.0",
"react-hook-form": "7.19.5",
"react-lorem-ipsum": "1.4.9",
"rollup": "2.60.0",
"rollup-plugin-typescript2": "0.31.0",
"storybook-addon-performance": "0.16.1",
"ts-jest": "27.0.7",
"tsconfig-paths-webpack-plugin": "3.5.2",
"ttypescript": "1.5.12",
"typescript": "4.4.4",
"typescript-transform-paths": "3.3.1"
},
"prettier": {
"endOfLine": "crlf",
"tabWidth": 2,
"trailingComma": "all",
"semi": false,
"printWidth": 120
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest/dist"
},
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}