-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 931 Bytes
/
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
{
"name": "tslox",
"private": false,
"version": "0.0.1-beta.1",
"type": "module",
"main": "./dist/tslox.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:webapp": "tsc && vite build --config vite-webapp.config.ts",
"preview": "vite preview",
"test": "jest",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"prismjs": "^1.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-simple-code-editor": "^0.11.2",
"ts-pattern": "^4.0.5"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.0.0"
},
"files": [
"tslox",
"dist"
]
}