This repository has been archived by the owner on Sep 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.43 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
{
"name": "cashflow-components",
"version": "0.1.0",
"main": "index.js",
"private": true,
"repository": "[email protected]:finanzcheck/cashflow-components.git",
"author": "Marcel Stieber <[email protected]>",
"license": "MIT",
"scripts": {
"bit:tag": "bit tag --all",
"bit:export": "bit export marcelstieber.cashflow-components",
"build-token": "theo tokens/json/figma.json --transform web --setup tokens/setup.js --format custom-properties.css,module.js,html --dest tokens/out",
"preview-token": "open tokens/out/figma.html",
"token": "build-token && yarn preview-token",
"figma": "dotenv-load babel-node ./scripts/figma/fetchToken.js",
"normalize": "dotenv-load babel-node ./scripts/tokenNormalizer.js",
"image": "dotenv-load babel-node ./scripts/figma/fetchImages.js",
"lint:js": "eslint --ext .js --ext .jsx './'",
"lint:js-fix": "eslint --ext .js --ext .jsx --fix './'"
},
"bit": {
"env": {
"compiler": {
"bit.envs/compilers/[email protected]": {
"rawConfig": {
"tsconfig": {
"compilerOptions": {
"target": "ES5",
"module": "CommonJS",
"lib": [
"Es5",
"Es6",
"Es7",
"dom",
"ESNext"
]
}
}
}
}
},
"tester": "bit.envs/testers/[email protected]"
},
"componentsDefaultDirectory": "components/{name}",
"packageManager": "yarn"
},
"dependencies": {
"@emotion/core": "10.0.28",
"@emotion/styled": "10.0.27",
"bit-bin": "14.7.6",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/node": "7.8.7",
"@babel/preset-env": "7.9.5",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"axios": "0.19.2",
"babel-eslint": "10.1.0",
"chalk": "4.0.0",
"dotenv-load": "2.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"fs-extra": "9.0.0",
"jest": "25.3.0",
"node-fetch": "2.6.0",
"path": "0.12.7",
"prettier": "2.0.4",
"theo": "8.1.5",
"typescript": "3.8.3"
}
}