-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2 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
{
"name": "@runnablejs/sdk",
"version": "0.4.15",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"build:watch": "rollup -c --watch --watch.include=src/**",
"prepublishOnly": "pnpm build",
"format": "prettier --write .",
"lint": "TIMING=1 eslint . --fix",
"test": "jest --passWithNoTests",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"types": "tsc -p tsconfig.types.json"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@chakra-ui/styled-system": "^2.9.1",
"@chakra-ui/system": "^2.6.1",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@iconify-json/fa": "^1.1.5",
"@iconify/react": "^6.0.2",
"@runnablejs/api": "*",
"@runnablejs/config": "*",
"@socket.io/component-emitter": "^4.0.0",
"@types/express": "^4.17.20",
"@types/jest": "29.5.7",
"@types/js-cookie": "^3.0.5",
"@types/lodash.get": "^4.4.8",
"@types/lodash.set": "^4.3.8",
"@types/node": "^18.18.8",
"@types/react": "^18.2.36",
"@types/react-dom": "^18.2.14",
"@types/uuid": "^9.0.6",
"binode": "^1.0.5",
"chakra-multiselect": "^0.4.6",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"express": "^4.18.2",
"framer-motion": "^10.16.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-cookie": "^3.0.5",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"npm-run-all": "^4.1.5",
"react-remove-scroll": "^2.5.7",
"socket.io-client": "^4.7.2",
"stylis": "^4.3.0",
"tiny-invariant": "^1.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
}
}