forked from kids-first/kf-uikit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.85 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
{
"name": "kf-uikit",
"version": "0.6.1",
"description": "Kids First Design System",
"main": "dist/main.js",
"module": "dist/main.js",
"files": [
"dist"
],
"bundlesize": [
{
"path": "./dist/*.js",
"maxSize": "3 MB"
},
{
"path": "./dist/*.css",
"maxSize": "1 MB"
}
],
"dependencies": {
"chroma-js": "^2.0.3",
"classnames": "^2.2.6",
"lodash": "^4.17.10",
"md5": "^2.2.1",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "2.1.8"
},
"scripts": {
"tailwind:css": "tailwind build src/css/tailwind.src.css -c tailwind.js -o src/css/tailwind.css",
"storybook": "start-storybook -p 9001 -c .storybook",
"snapshot": "STORYBOOK_PERCY_ENV=true build-storybook -c .storybook -o ./storybook-static/ && percy-storybook --widths=320,1280 --minimum_height=2000",
"storybook:build": "NODE_ENV=production build-storybook -c .storybook -o ./storybook-static/",
"build": "NODE_ENV=production yarn run rollup -c",
"test": "NODE_ENV=testing yarn run jest"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@percy/storybook": "^3.0.2",
"@storybook/addon-a11y": "5.0.6",
"@storybook/addon-backgrounds": "^5.0.6",
"@storybook/addon-centered": "5.0.6",
"@storybook/addon-info": "5.0.6",
"@storybook/addon-knobs": "5.0.6",
"@storybook/react": "5.0.6",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^3.0.2",
"identity-obj-proxy": "^3.0.0",
"mini-css-extract-plugin": "^0.5.0",
"moment": "2.24.0",
"moment-timezone": "^0.5.13",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-for": "^2.1.1",
"postcss-nested-props": "^2.0.0",
"prettier": "^1.14.2",
"react-docgen": "^4.1.0",
"react-test-renderer": "^16.8.6",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-svg": "^1.0.1",
"tailwindcss": "^0.7.4",
"url-loader": "^1.1.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
}
}