-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "fx-runner",
"private": true,
"scripts": {
"start": "ts-node-dev --project ./tsconfig-dev.json --respawn ./node.ts",
"dev": "vite dev",
"ts:check": "tsc --project ./tsconfig.json --noEmit --skipLibCheck",
"prettier:check": "yarn prettier --check ./src",
"format": "yarn prettier --write ./src",
"test": "jest"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-styled-components": "^2.1.4",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"styled-components": "^6.1.17",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"vite": "^6.2.6"
},
"dependencies": {
"lodash": "^4.17.21"
},
"packageManager": "yarn@4.7.0"
}