-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "intersection-loader-workspace",
"version": "0.2.2",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"copy:readme": "cp ./README.md packages/react/README.md",
"build": "tsc --build",
"clean": "rimraf packages/**/dist .temp",
"lint": "eslint .",
"pretest": "npm run build",
"test": "mocha \"packages/**/dist/test/**/*.test.js\" --parallel",
"watch": "npm run build -- -w"
},
"keywords": [
"react",
"react-intersection-loader",
"instersection-observer",
"lazy-load",
"typescript",
"javascript"
],
"author": {
"email": "[email protected]",
"name": "tzachbon",
"url": "https://github.com/tzachbon"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"expect": "^29.3.1",
"html-webpack-plugin": "^5.5.0",
"jest-util": "^29.3.1",
"mocha": "^10.2.0",
"pleb": "^7.0.0",
"promise-assist": "^1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4"
}
}