-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 846 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": "revitalace-js",
"version": "1.4",
"description": "",
"main": "index.js",
"browser": {
"node-fetch": false
},
"scripts": {
"build": "yarn nuke && webpack --mode production",
"start": "webpack serve --mode production --hot --open",
"nuke": "rm -rf dist"
},
"keywords": [],
"author": "Nishanth Shyamsundar",
"license": "MIT",
"devDependencies": {
"ace-builds": "^1.4.7",
"css-loader": "^5.0.1",
"glob": "^7.1.6",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.6",
"raw-loader": "^4.0.2",
"tern": "^0.24.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"@commitlint/config-conventional": "^11.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}