-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
37
38
39
{
"name": "auth-guide",
"version": "0.1.0",
"private": true,
"dependencies": {
"less": "^4.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "npm-run-all --parallel open:src lint:watch",
"open:src": "babel-node node_modules/webpack/bin/webpack.js serve --config webpack.dev.js",
"lint": "esw webpack.* src --color",
"lint:watch": "npm run lint -- --watch"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react": "^7.26.1",
"eslint-watch": "^8.0.0",
"html-webpack-plugin": "^5.5.0",
"less-loader": "^10.2.0",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.1",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0",
"webpack-merge": "^5.8.0"
}
}