-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 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
{
"name": "heft-webpack-basic-tutorial",
"description": "This project illustrates a minimal tutorial Heft project targeting the web browser runtime",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "heft build --clean",
"start": "heft build-watch",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"react-dom": "~16.13.1",
"react": "~16.13.1",
"tslib": "~2.3.1"
},
"devDependencies": {
"@rushstack/eslint-config": "^3.3.2",
"@rushstack/heft-jest-plugin": "^0.7.13",
"@rushstack/heft-lint-plugin": "^0.1.14",
"@rushstack/heft-typescript-plugin": "^0.1.14",
"@rushstack/heft-webpack5-plugin": "^0.8.5",
"@rushstack/heft": "^0.56.2",
"@types/heft-jest": "1.0.2",
"@types/react-dom": "16.9.14",
"@types/react": "16.14.23",
"@types/webpack-env": "1.18.0",
"css-loader": "~6.6.0",
"eslint": "~8.7.0",
"html-webpack-plugin": "~5.5.0",
"source-map-loader": "~3.0.1",
"style-loader": "~3.3.1",
"typescript": "~5.0.4",
"webpack": "~5.82.1"
}
}