-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "async-race-api",
"version": "1.0.0",
"description": "Fun with promises",
"main": "jsonServer.js",
"scripts": {
"start": "node jsonServer.js",
"start-dev": "webpack serve",
"build-dev": "webpack",
"build-prod": "webpack --node-env=production",
"clear": "rd /s /q dist",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": ""
},
"author": "@dairinka",
"license": "ISC",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"homepage": "",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-webpack-plugin": "^3.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.2.0",
"img-loader": "^4.0.0",
"json-server": "^0.17.1",
"postcss": "^8.4.20",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"prettier": "2.2.1",
"sass": "^1.57.0",
"sass-loader": "^13.2.0",
"style-loader": "^2.0.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3",
"webpack-dev-server": "^4.11.1"
}
}