-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 830 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 830 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
28
29
{
"name": "setutils",
"version": "1.0.0",
"main": "dist/setutils.min.js",
"author": "Jay Gurav <mrithyunjay2799@gmail.com> (http://github.com/JayMGurav)",
"license": "MIT",
"scripts": {
"test": "jest",
"doc": "typedoc --out docs ./src",
"build:dev": "webpack --watch --config ./buildConfigs/webpack.dev.js",
"build:prod": "webpack --config ./buildConfigs/webpack.prod.js",
"dev:start": "nodemon ./dist/main.bundle.js"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.13.2",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"source-map-loader": "^2.0.1",
"ts-loader": "^9.1.2",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"webpack-dev-server": "^3.11.2"
}
}