This repository has been archived by the owner on Aug 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.78 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
{
"name": "@substrafoundation/substra-ui",
"sideEffects": false,
"version": "1.1.4",
"description": "A shared UI components library for the Substra project.",
"main": "cjs/index.js",
"module": "es/index.js",
"files": [
"es/",
"cjs/"
],
"repository": "[email protected]:SubstraFoundation/substra-ui.git",
"author": "Jérémy Morel <[email protected]>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build:cjs": "NODE_ENV=cjs babel src --out-dir cjs --ignore **/*.test.js,**/*.stories.js",
"build:es": "NODE_ENV=es babel src --out-dir es --ignore **/*.test.js,**/*.stories.js",
"build": "npm run build:cjs && npm run build:es && cp -r src/globalStyles/lato cjs/globalStyles/ && cp -r src/globalStyles/lato es/globalStyles/",
"eslint": "eslint --fix src",
"eslint-check": "eslint src",
"test": "jest src",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/core": "10.0.15",
"@emotion/styled": "10.0.15",
"copy-to-clipboard": "3.2.0",
"diacritic": "0.0.2",
"downshift": "3.2.12",
"emotion": "10.0.14",
"emotion-normalize": "10.1.0",
"file-saver": "2.0.2",
"keycode": "2.2.0",
"mime-types": "2.1.24",
"prop-types": "15.7.2",
"react-syntax-highlighter": "11.0.2",
"react-tabs": "3.0.0"
},
"peerDependencies": {
"react": "16.x",
"react-is": "16.x"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@sambego/storybook-state": "1.3.6",
"@storybook/addon-actions": "5.2.5",
"@storybook/addon-knobs": "5.2.5",
"@storybook/addon-links": "5.2.5",
"@storybook/addon-storyshots": "5.2.5",
"@storybook/addon-storysource": "5.2.5",
"@storybook/addons": "5.2.5",
"@storybook/cli": "5.2.5",
"@storybook/react": "5.2.5",
"@testing-library/jest-dom": "4.0.0",
"@testing-library/react": "9.1.1",
"@types/jest": "24.0.17",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"babel-plugin-emotion": "10.0.15",
"babel-plugin-macros": "2.6.1",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.15.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"jest": "24.8.0",
"jest-dom": "4.0.0",
"jest-emotion": "10.0.14",
"react-redux": "7.1.0",
"react-test-renderer": "16.9.0",
"redux": "4.0.4",
"require-context.macro": "1.1.1"
}
}