-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "playground",
"version": "0.0.0",
"main": "./src/index.js",
"scripts": {
"start": "webpack serve --mode development --devtool cheap-module-source-map --history-api-fallback --host 0.0.0.0 --client-web-socket-url auto://0.0.0.0:0/ws",
"build": "webpack --mode production",
"test": "jest --passWithNoTests",
"test:type": "tsc",
"lint": "eslint src/"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@types/webpack": "5.28.5",
"@types/node": "22.10.2",
"babel-loader": "9.2.1",
"css-loader": "7.1.2",
"eslint": "9.17.0",
"eslint-plugin-react": "7.37.2",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"style-loader": "4.0.0",
"typescript": "5.7.2",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.2.0"
},
"eslintConfig": {
"parser": "@babel/eslint-parser",
"plugins": [
"react"
],
"parserOptions": {
"requireConfigFile": false,
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true
},
"rules": {
"semi": "off"
}
}
}