-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
33 lines (33 loc) · 880 Bytes
/
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
{
"name": "bazel-from-scratch",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "bazel build //...",
"serve": "ibazel run //src:serve",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@bazel/bazel": "^2.0.0",
"@bazel/ibazel": "^0.11.0",
"@bazel/typescript": "^1.0.1",
"@types/node": "^13.1.4",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"css-loader": "^3.4.1",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"style-loader": "^1.1.2",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}