-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "interact",
"version": "1.0.0",
"private": true,
"main": "index.js",
"packageManager": "yarn@4.10.3",
"scripts": {
"build": "yarn workspaces foreach --all --topological --include 'packages/*' run build && yarn workspaces foreach --all --include 'apps/*' run build",
"lint": "eslint . --max-warnings=0",
"test": "yarn workspaces foreach --all --include 'packages/*' run test",
"dev:docs": "yarn workspace @wix/interact-docs run dev",
"dev:demo": "yarn workspace @wix/interact-demo run dev",
"format": "prettier . --write",
"format:check": "prettier . --check",
"serve": "npx serve . -l 3000",
"serve:public": "npx serve . -l tcp://0.0.0.0:3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix/interact.git"
},
"keywords": [
"animation",
"javascript",
"css",
"waapi"
],
"author": {
"name": "wow!Team",
"email": "wow-dev@wix.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wix/interact/issues"
},
"homepage": "https://github.com/wix/interact#readme",
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.51.0",
"@typescript-eslint/parser": "8.51.0",
"eslint": "9.39.2",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "3.7.4",
"typescript": "^5.9.3"
}
}