forked from bazelbuild/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "@bazel-example/next.js",
"private": true,
"scripts": {
"dev": "ibazel run next_dev",
"build": "bazel build next",
"export": "bazel build next_export",
"start": "ibazel run next_start",
"lint": "bazel build --config=lint //next.js/pages/...",
"test": "bazel test ... --test_lang_filters=jest --build_tests_only"
},
"dependencies": {
"@bazel-example/one": "workspace:*",
"is-even": "1.0.0",
"next": "13.0.5",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@bazel/ibazel": "0.25.0",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "13.4.0",
"@types/is-even": "1.0.1",
"@types/jest": "29.2.3",
"@types/node": "18.19.31",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"jest-cli": "29.5.0",
"jest-junit": "16.0.0",
"jest-environment-jsdom": "29.5.0",
"jest-transform-stub": "2.0.0",
"typescript": "4.9.3"
}
}