-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 831 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 831 Bytes
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
{
"name": "temperature-chart",
"version": "1.0.0",
"description": "",
"scripts": {
"build:dev": "webpack --mode development --devtool inline-source-map --config webpack.config.js",
"build:prod": "webpack --mode production --config webpack.config.js",
"serve": "npx webpack serve",
"dev": "npm run build:dev && npm run serve",
"start": "npm run build:prod && npm run serve",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"css-loader": "6.7.1",
"eslint": "8.22.0",
"mini-css-extract-plugin": "2.6.1",
"ts-loader": "9.3.1",
"typescript": "4.7.4",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.10.0"
}
}