-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.04 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
{
"name": "looker-custom-viz-boilerplate",
"version": "1.0",
"description": "Looker custom visualization boilerplate with Highcharts example implementation",
"main": "my-custom-viz.js",
"repository": "https://github.com/rbob86/looker-custom-viz-boilerplate",
"author": "Ryan Bobrowksi [email protected]",
"license": "MIT",
"devDependencies": {
"concurrently": "^7.6.0",
"css-loader": "^3.6.0",
"style-loader": "^1.2.1",
"ts-loader": "^9.4.2",
"url-loader": "^4.1.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"express": "^4.18.2",
"highcharts": "^10.3.3",
"node": "^19.3.0"
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch --progress",
"gen-cert": "cd server && openssl genrsa -out key.pem && openssl req -new -key key.pem -out csr.pem && openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem && rm csr.pem",
"serve": "concurrently \"webpack --config webpack.config.js --watch --progress\" \"cd server && node index.js\""
}
}