forked from ritz078/transform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.53 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "transform",
"version": "2.0.1",
"repository": "https://github.com/ritz078/transform",
"author": "ritz078 <[email protected]>",
"license": "MIT",
"scripts": {
"dev:inspect": "NODE_OPTIONS=\"--inspect\" next dev",
"dev": "next dev",
"start": "next start",
"format": "prettier --write '**/*.ts' '**/*.tsx'",
"build": "next build",
"now-build": "next build && cp -r ./static/* .next/static",
"postinstall": "patch-package"
},
"engines": {
"node": "10.x"
},
"dependencies": {
"@babel/standalone": "^7.5.5",
"@graphql-codegen/core": "^1.4.0",
"@graphql-codegen/flow": "^1.4.0",
"@graphql-codegen/flow-operations": "^1.4.0",
"@graphql-codegen/flow-resolvers": "^1.4.0",
"@graphql-codegen/fragment-matcher": "^1.4.0",
"@graphql-codegen/introspection": "^1.4.0",
"@graphql-codegen/java": "^1.4.0",
"@graphql-codegen/java-resolvers": "^1.4.0",
"@graphql-codegen/schema-ast": "^1.4.0",
"@graphql-codegen/typescript": "^1.4.0",
"@graphql-codegen/typescript-apollo-angular": "^1.4.0",
"@graphql-codegen/typescript-mongodb": "^1.4.0",
"@graphql-codegen/typescript-operations": "^1.4.0",
"@graphql-codegen/typescript-react-apollo": "^1.4.0",
"@graphql-codegen/typescript-resolvers": "^1.4.0",
"@graphql-codegen/typescript-stencil-apollo": "^1.4.0",
"@graphql-codegen/typescript-urql": "^1.4.0",
"@svgr/core": "^4.3.2",
"@svgr/plugin-jsx": "^4.3.2",
"@types/jsonld": "^1.5.0",
"@walmartlabs/json-to-simple-graphql-schema": "^2.0.0",
"babel-plugin-json-to-proptypes": "^0.1.0",
"babel-plugin-object-styles-to-template": "^0.2.2",
"babel-standalone": "^6.26.0",
"clipboard-copy": "^3.0.0",
"evergreen-ui": "^4.18.1",
"flow-to-ts": "gist:3f49c8bd7a2b71429dcae28f2c2d1d97",
"formik": "^1.5.8",
"generate-schema": "^2.6.0",
"gofmt.js": "^0.0.2",
"graphql": "^14.4.2",
"graphql-tools": "^4.0.5",
"htmltojsx": "^0.3.0",
"is-capitalized": "^1.0.0",
"is-svg": "^4.2.0",
"json-schema-to-openapi-schema": "^0.3.0",
"json-schema-to-typescript": "^6.1.3",
"json-to-go": "gist:0d0b8324131c80eeb7e1df20001be32f",
"json-ts": "^1.6.4",
"jsonld": "^1.6.2",
"lodash": "^4.17.14",
"markdown": "^0.5.0",
"monaco-editor": "^0.17.1",
"next": "^9.0.2",
"nprogress": "^0.2.0",
"postcss": "^7.0.17",
"postcss-js": "^2.0.2",
"qrcode.react": "^0.9.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-ga": "^2.6.0",
"snack-sdk": "^2.3.1",
"stringify-object": "^3.3.0",
"svg-to-dataurl": "^1.0.0",
"svgo": "^1.3.0",
"transform-json-types": "^0.7.0",
"xml-js": "^1.6.11",
"yaml": "^1.6.0"
},
"devDependencies": {
"@now/node": "^0.12.0",
"@types/lodash": "^4.14.135",
"@types/next": "^8.0.5",
"@types/prettier": "^1.16.4",
"@types/react": "^16.8.23",
"@types/svgo": "^1.2.0",
"@zeit/next-css": "^1.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"husky": "^3.0.0",
"imagemin-lint-staged": "^0.4.0",
"lint-staged": "^9.2.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"patch-package": "^6.1.2",
"postinstall-postinstall": "^2.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"typescript": "3.5.3",
"ui-box": "^2.1.0",
"webpack": "^4.36.1",
"worker-loader": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"./assets/*/*.svg": [
"imagemin-lint-staged",
"git add"
]
}
}