-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1 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
{
"private": true,
"name": "testproject-es6",
"version": "1.0.0",
"description": "Example setup to get startet with Highcharts ES6 and TypeScript",
"main": "index.js",
"author": "Sophie Bremer",
"license": "ISC",
"dependencies": {
"highcharts": "^11.4.1"
},
"devDependencies": {
"@webpack-cli/generators": "^3.0.7",
"css-loader": "^7.1.1",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p src/",
"dist": "webpack --mode=production --node-env=production",
"dist:dev": "webpack --mode=development",
"dist:prod": "webpack --mode=production --node-env=production",
"serve": "webpack serve",
"watch": "webpack --watch"
}
}