-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 953 Bytes
/
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
{
"name": "mod-starter",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm install && npm run build-watch",
"server": "mods-dev-server dist",
"build": "webpack --mode production --no-devtool",
"build-watch": "webpack --watch"
},
"keywords": [],
"author": "Emanuel Dellsén, Hartmut Fischer, Jonatan Vaara, Alexander Strand & Karl Västgård",
"license": "ISC",
"devDependencies": {
"@tibco/spotfire-mods-dev-server": "^1.0.1",
"clean-css": "^4.2.3",
"copy-webpack-plugin": "^11.0.0",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"ts-loader": "^9.4.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"clipboardy": "^3.0.0",
"eslint": "^7.10.0",
"html-minifier": "^4.0.0",
"minify": "^6.0.0",
"minimist": "^1.2.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}