-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.74 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.74 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": "@a11ywatch/ui",
"version": "1.3.4",
"description": "a11ywatch ui components",
"main": "./dist/index.js",
"types": "types/index.d.ts",
"author": "jeffmendez",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc && NODE_ENV=production postcss src/css/tailwind.css -o dist/css/tailwind.css",
"postbuild": "npm run prepdist",
"storybook": "start-storybook -p 6006 --ci",
"build-storybook": "build-storybook -s public",
"prepdist": "node ./config/prep-dist.js",
"predeploy": "npm run build",
"deploy": "cd dist && npm publish",
"deploy-storybook": "storybook-to-ghpages"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@fullhuman/postcss-purgecss": "^2.1.2",
"@storybook/addon-a11y": "6.1.0",
"@storybook/addon-actions": "6.1.0",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-links": "6.1.0",
"@storybook/addons": "6.1.0",
"@storybook/preset-typescript": "3.0.0",
"@storybook/react": "6.1.0",
"@storybook/storybook-deployer": "2.8.7",
"@types/jest": "^25.2.1",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/styled-components": "^5.0.1",
"autoprefixer": "9.8.6",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"css-loader": "^3.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.7",
"postcss-cli": "^7.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.2",
"react": "^17.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.2",
"recast": "^0.20.5",
"regenerator-runtime": "^0.13.5",
"style-loader": "^1.1.3",
"tailwindcss": "3.2.4",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {
"@headlessui/react": "^1.7.4"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/tailwind/"
],
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}