-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.59 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.59 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
{
"name": "@rctf/client",
"license": "BSD-3-Clause",
"version": "3.0.0-alpha.0",
"main": "index.js",
"types": "index.d.ts",
"files": [
"dist/",
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "eslint .",
"typecheck": "tsc -b",
"build": "NODE_ENV=production webpack build",
"dev": "NODE_ENV=development webpack serve",
"storybook": "start-storybook",
"test": "jest",
"prepack": "yarn build"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@emotion/jest": "11.5.0",
"@playwright/test": "1.50.1",
"@prefresh/babel-plugin": "0.4.1",
"@prefresh/webpack": "3.3.2",
"@reach/auto-id": "0.16.0",
"@storybook/addon-a11y": "6.3.12",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-controls": "6.3.12",
"@storybook/addon-docs": "6.3.12",
"@storybook/addon-knobs": "6.3.1",
"@storybook/builder-webpack5": "6.3.12",
"@storybook/react": "6.3.12",
"@testing-library/dom": "8.10.1",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/preact": "2.0.1",
"@testing-library/user-event": "13.5.0",
"@theme-ui/preset-base": "0.9.1",
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"@types/webpack-env": "1.16.3",
"babel-loader": "8.2.3",
"babel-plugin-const-enum": "1.1.0",
"cirrus-ui": "0.5.5",
"copy-webpack-plugin": "9.0.1",
"css-loader": "6.5.0",
"deepmerge": "4.2.2",
"eslint": "7.32.0",
"eslint-webpack-plugin": "3.1.0",
"fork-ts-checker-webpack-plugin": "6.4.0",
"history": "5.0.1",
"html-webpack-plugin": "5.5.0",
"jest": "27.3.1",
"jss": "10.4.0",
"jss-camel-case": "6.1.0",
"jss-nested": "6.0.1",
"jss-plugin-global": "10.4.0",
"jss-vendor-prefixer": "8.0.1",
"linkstate": "1.1.1",
"preact": "10.5.15",
"preact-markup": "2.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "6.0.0-beta.8",
"size-plugin": "3.0.0",
"snarkdown": "1.2.2",
"style-loader": "3.3.1",
"svg-react-loader": "0.4.6",
"swr": "1.0.1",
"terser-webpack-plugin": "5.2.4",
"theme-ui": "0.9.1",
"type-fest": "2.5.2",
"typescript": "4.4.4",
"webpack": "5.94.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redpwn/rctf.git"
},
"author": "redpwn <contact@redpwn.net>",
"bugs": {
"url": "https://github.com/redpwn/rctf/issues"
},
"homepage": "https://rctf.redpwn.net"
}