-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.52 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.52 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
{
"name": "@connctd/quartz",
"version": "1.1.2-0",
"description": "connctd design system",
"main": "build/index.js",
"types": "build/index.d.js",
"author": "Pandelis Zembashis <pandelis.zembashis@connctd.com>",
"license": "MIT",
"engines": {
"node": ">=10.0.0",
"yarn": "^1.15.0"
},
"dependencies": {
"@emotion/core": "^10.0.17",
"@emotion/styled": "^10.0.17",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@connctd/eslint-config-typescript": "^1.0.3",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-info": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@storybook/storybook-deployer": "^2.8.1",
"@svgr/webpack": "^4.3.2",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.3",
"@types/react": "^16.8.23",
"@types/storybook__react": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.27",
"babel-preset-react-app": "^9.1.2",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"np": "^6.1.0",
"react-docgen-typescript-loader": "^3.1.0",
"ts-jest": "^24.0.2",
"ts-loader": "^7.0.5",
"typescript": "^3.5.3",
"webpack": "^4.0.0"
},
"scripts": {
"prepublishOnly": "npm run compile && tsc",
"storybook": "start-storybook -p 6006 -s ./.storybook/static",
"build-storybook": "build-storybook",
"start": "start-storybook -p 6006 -s ./.storybook/static",
"build": "build-storybook -o public -s ./.storybook/static",
"watch": "babel components --out-dir build --ignore 'components/**/*.stories.tsx' --extensions '.ts,.tsx' --watch",
"lint": "eslint ./components --ext ts,tsx,js,jsx",
"compile": "rm -rf ./build && babel components --out-dir build --ignore 'components/**/*.stories.tsx' --extensions '.ts,.tsx'",
"check-types": "tsc",
"deploy": "np",
"test": "echo Wow 100% success"
}
}