This repository was archived by the owner on Mar 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.38 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
{
"name": "espinacs-react-library",
"version": "1.0.13",
"description": "",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/espinacs/react-components-library"
},
"keywords": [
"jest",
"react",
"components",
"storybook",
"react-testing-library"
],
"scripts": {
"test": "jest --coverage",
"lint": "eslint ./src/**/**.js",
"test:watch": "jest --watch --json --outputFile=.jest-test-results.json",
"storybook": "start-storybook -p 9002 -c .storybook --quiet",
"storybook:build": "build-storybook -c .storybook -o .out",
"clean": "rm -rf ./dist",
"build": "npm run clean && yarn run webpack --mode=production",
"transpile": "npm run build && babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"heroku-postbuild": "build-storybook -c .storybook -o public"
},
"author": "Wakoopa",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "^3.4.6",
"@storybook/addon-centered": "^3.4.6",
"@storybook/addon-jest": "^3.4.6",
"@storybook/addon-knobs": "^3.4.6",
"@storybook/addon-options": "^3.4.6",
"@storybook/addon-storysource": "^3.4.6",
"@storybook/react": "4.0.0-alpha.8",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-import": "^1.7.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-hot-loader": "^1.3.9",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-jest": "^2.1.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"file-loader": "^1.1.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"react-testing-library": "^3.1.3",
"serve": ">=7.1.3",
"style-loader": "^0.20.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
},
"dependencies": {
"antd": "^3.5.4",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-modal": "^3.4.4"
},
"babel": {
"presets": "./.babelrc.js"
}
}