This repository was archived by the owner on Nov 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.49 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.49 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
{
"name": "app.stormkit.io",
"version": "1.0.0",
"description": "Stormkit is an infrastructure provider for modern javascript applications which is strongly integrated with popular Git providers.",
"private": true,
"license": "MIT",
"author": "Savas Vedova <savas@stormkit.io>",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"dev": "node scripts/dev.js",
"dev:live": "API_PROXY_DOMAIN=https://api.stormkit.io NODE_ENV=development node scripts/dev.js",
"test": "NODE_ENV=test jest --detectOpenHandles --runInBand",
"lint": "eslint .",
"prettier": "prettier \"**/*.{ts,js,tsx,md}\" --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier \"**/*.{ts,js,tsx,md}\" --write",
"eslint --fix",
"git add"
]
},
"dependencies": {
"@codemirror/lang-html": "^0.19.3",
"@codemirror/lang-javascript": "^0.19.3",
"@material-ui/core": "4.12.3",
"@material-ui/lab": "4.0.0-alpha.60",
"@sentry/react": "6.17.7",
"@sentry/tracing": "6.17.7",
"@stripe/react-stripe-js": "1.7.0",
"@stripe/stripe-js": "1.22.0",
"@types/classnames": "2.3.1",
"@types/react-router-dom": "5.3.3",
"@uiw/react-codemirror": "4.3.3",
"classnames": "2.3.1",
"dotenv": "7.0.0",
"flag-icon-css": "3.5.0",
"jest": "26.6.3",
"lodash.get": "4.4.2",
"lodash.isequal": "4.5.0",
"prop-types": "15.8.1",
"query-string": "6.14.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-kawaii": "0.17.0",
"react-router": "5.2.1",
"react-router-dom": "5.3.0",
"react-transition-group": "4.4.2",
"tailwindcss": "2.2.19",
"tldts": "5.7.61"
},
"devDependencies": {
"@babel/core": "7.17.2",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@react-mock/xhr": "0.2.0",
"@testing-library/dom": "8.11.3",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/react-dom": "17.0.11",
"@types/react-kawaii": "0.17.0",
"@types/webpack-env": "1.16.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"add": "2.0.6",
"autoprefixer": "10.4.2",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.3",
"babel-plugin-transform-runtime": "6.23.0",
"clean-webpack-plugin": "2.0.2",
"connect-history-api-fallback": "1.6.0",
"copy-webpack-plugin": "6.4.1",
"css-loader": "5.2.7",
"esbuild-loader": "2.18.0",
"eslint": "7.32.0",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "3.2.0",
"http-proxy-middleware": "2.0.3",
"husky": "7.0.4",
"isomorphic-fetch": "3.0.0",
"koa-connect": "2.1.0",
"lint-staged": "12.3.3",
"mini-css-extract-plugin": "0.12.0",
"nock": "13.2.4",
"optimize-css-assets-webpack-plugin": "6.0.1",
"postcss": "8.4.6",
"postcss-loader": "4.3.0",
"prettier": "2.5.1",
"react-dev-utils": "12.0.0",
"style-loader": "1.3.0",
"terser-webpack-plugin": "3.1.0",
"typescript": "3.9.10",
"webpack": "4.46.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4"
}
}