-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 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
{
"name": "tiny-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "rm -rf dist && rollup --bundleConfigAsCjs --config scripts/rollup/dev.config.js",
"demo": "vite serve demos/performance --config scripts/vite/vite.config.js --force",
"lint": "eslint --ext .ts,.jsx,.tsx --fix --quiet ./",
"test": "jest --config scripts/jest/jest.config.js",
"playground": "vite serve playground/test-fc --config scripts/vite/vite.config.js --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sunny-117/tiny-react.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sunny-117/tiny-react/issues"
},
"homepage": "https://github.com/Sunny-117/tiny-react#readme",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.20.2",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-alias": "^4.0.4",
"@rollup/plugin-commonjs": "^23.0.0",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/scheduler": "^0.16.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitejs/plugin-react": "^2.2.0",
"commitlint": "^17.1.2",
"eslint": "^8.25.0",
"eslint-plugin,": "link:@typescript-eslint/eslint-plugin,",
"husky": "^8.0.1",
"jest": "^29.6.4",
"jest-config": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-react": "^0.14.0",
"rimraf": "^3.0.2",
"rollup": "^3.1.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.8.4",
"vite": "^3.2.3"
},
"dependencies": {
"@rollup/plugin-replace": "^5.0.1",
"scheduler": "^0.23.0"
}
}