-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "nightly-tests",
"description": "Nightly integration tests for React Native",
"version": "0.0.0",
"private": true,
"workspaces": [
"website"
],
"engines": {
"node": ">=22"
},
"homepage": "https://react-native-community.github.io/nightly-tests",
"bugs": {
"url": "https://github.com/react-native-community/nightly-tests/issues"
},
"repository": "github:react-native-community/nightly-tests",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"scripts": {
"lint": "eslint",
"test": "jest --config jest.config.js",
"test:watch": "jest --watch --config jest.config.js"
},
"license": "MIT",
"author": "React Native Community"
}