-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
62 lines (62 loc) · 2 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
58
59
60
61
62
{
"name": "brave-variations",
"version": "0.0.1",
"description": "Brave Variations",
"scripts": {
"build": "npm run build:proto && npm run build:web",
"build:proto": "tsx src/scripts/generate_proto_ts.ts",
"build:web": "webpack -c src/web/webpack.config.js --mode=production",
"clean": "tsx src/scripts/clean.ts",
"lint": "tsx src/scripts/lint.ts",
"postinstall": "npm run typecheck:scripts && npm run build:proto",
"seed_tools": "tsx src/seed_tools/seed_tools.ts",
"serve:dev": "webpack serve -c src/web/webpack.config.js --hot --mode=development",
"test": "jest --config=src/jest.config.js",
"tracker": "tsx src/finch_tracker/main.ts",
"typecheck": "tsc --noEmit",
"typecheck:scripts": "tsc --noEmit --project src/scripts"
},
"devDependencies": {
"@commander-js/extra-typings": "12.1.0",
"@jest/globals": "29.7.0",
"@protobuf-ts/plugin": "2.9.4",
"@types/diff": "5.2.3",
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.15.0",
"commander": "12.1.0",
"css-loader": "5.2.7",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-licenses": "1.0.2",
"eslint-plugin-react": "7.37.2",
"file-loader": "6.2.0",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-multiline-arrays": "3.0.6",
"prettier-plugin-organize-imports": "3.2.4",
"style-loader": "3.3.4",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"tsx": "4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "8.15.0",
"webpack": "5.96.1",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.2"
},
"type": "commonjs",
"license": "MPL-2.0",
"moduleResolution": "node",
"dependencies": {
"@protobuf-ts/runtime": "2.9.4",
"json5": "2.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router": "6.28.0",
"react-router-dom": "6.28.0"
}
}