-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.63 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@piglovesyou/fig-cli",
"version": "0.3.7",
"main": "index.js",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"singleQuote": true
},
"files": [
"dist",
"bin"
],
"bin": {
"fig": "bin/fig"
},
"dependencies": {
"@babel/core": "7.15.4",
"@babel/generator": "7.15.4",
"@babel/parser": "7.14.3",
"@babel/plugin-syntax-jsx": "7.14.5",
"@babel/plugin-transform-modules-commonjs": "7.15.4",
"@babel/plugin-transform-react-jsx": "7.14.9",
"@babel/preset-env": "7.15.4",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@babel/template": "7.15.4",
"@babel/traverse": "7.15.4",
"@babel/types": "7.14.2",
"camelcase": "6.2.0",
"command-line-args": "5.2.0",
"command-line-usage": "6.1.1",
"cosmiconfig": "7.0.1",
"csstype": "3.0.8",
"escape-html": "1.0.3",
"globby": "11.0.4",
"listr": "0.14.3",
"lodash.chunk": "4.2.0",
"lodash.findlast": "4.6.0",
"make-dir": "3.1.0",
"mime-types": "2.1.32",
"node-fetch": "2.6.1",
"p-map": "4.0.0",
"piscina": "3.1.0",
"prettier": "2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"rxjs": "7.3.0",
"slash": "3.0.0"
},
"devDependencies": {
"@types/babel-core": "6.25.7",
"@types/babel__core": "7.1.15",
"@types/babel__generator": "7.6.3",
"@types/babel__preset-env": "7.9.2",
"@types/babel__template": "7.4.1",
"@types/babel__traverse": "7.14.2",
"@types/command-line-args": "5.2.0",
"@types/command-line-usage": "5.0.2",
"@types/escape-html": "1.0.1",
"@types/gh-pages": "3.2.0",
"@types/jest": "26.0.24",
"@types/listr": "0.14.4",
"@types/lodash": "4.14.172",
"@types/lodash.chunk": "4.2.6",
"@types/lodash.findlast": "4.6.6",
"@types/mime-types": "2.1.1",
"@types/node": "15.14.9",
"@types/node-fetch": "2.5.12",
"@types/prettier": "2.3.2",
"@types/react": "17.0.19",
"@types/react-dom": "17.0.9",
"@types/react-test-renderer": "17.0.1",
"dotenv": "10.0.0",
"execa": "5.1.1",
"gh-pages": "3.2.3",
"husky": "6.0.0",
"jest": "26.6.3",
"prettier-plugin-organize-imports": "1.1.1",
"pretty-quick": "3.1.1",
"ts-node": "9.1.1",
"typescript": "4.3.5"
},
"scripts": {
"clean": "rimraf '**/__generated__'",
"compile-dev": "tsc --project tsconfig.dev.json",
"build": "rimraf dist && tsc --project tsconfig.compile.json",
"test": "jest",
"gh-pages": "gh-pages -d __tests__/__generated__",
"prepublishOnly": "yarn clean && yarn build && yarn test"
}
}