-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.93 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "lazy-dom",
"version": "1.0.0",
"description": "",
"main": "dist/lazyDom.js",
"scripts": {
"benchmark:watch": "tsx watch benchmark/benchmark.ts",
"benchmark": "tsx benchmark/benchmark.ts",
"benchmark:optimizing-stores": "nodemon -e ts --exec pnpm exec tsx experiments/optimizingStores/optimizingStores.ts",
"build": "pnpm exec tsc ./src/lazyDom.ts --outDir dist",
"build:watch": "pnpm exec tsc --watch ./src/lazyDom.ts --outDir dist",
"dev:watch": "nodemon --config nodemon.dev.json",
"dev": "pnpm benchmark && pnpm test",
"lint": "eslint .",
"test:jsdom": "echo '*** JSDOM ***'; tsx --import global-jsdom/register ./node_modules/mocha/bin/mocha.js",
"test:lazydom": "echo '*** lazyDom ***'; tsx --import ./src/register.js ./node_modules/mocha/bin/mocha.js ",
"test:watch": "nodemon --config nodemon.test.json --",
"test": "pnpm test:jsdom && pnpm test:lazydom"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.0.0",
"@types/chai": "^4.3.16",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.6",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.11",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"chai": "^5.1.0",
"eslint": "~9.8.0",
"eslint-plugin-mocha": "^10.5.0",
"global-jsdom": "^24.0.0",
"globals": "^15.9.0",
"jsdom": "^24.0.0",
"lodash-es": "^4.17.21",
"mocha": "^10.4.0",
"nanoid": "^5.0.7",
"nodemon": "^3.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"tinybench": "^2.8.0",
"tsx": "^4.11.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.0.0"
}
}