forked from prifina-admin/developers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.55 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.55 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
{
"name": "components",
"version": "1.0.0",
"description": "Component boilerplate",
"author": "Tero <tero@prifina.com>",
"license": "MIT",
"main": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build:esm": "cross-env NODE_ENV=production BABEL_ENV=esm babel ./src --out-dir ./dist/esm",
"build:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel ./src --out-dir ./dist/cjs",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel ./src --out-dir ./dist/es",
"storybook": "start-storybook"
},
"dependencies": {
"@styled-system/theme-get": "^5.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.0",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-storyshots": "^5.3.19",
"@storybook/react": "^5.3.18",
"@styled-system/prop-types": "^5.1.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.5",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react-test-renderer": "^16.13.1"
}
}