generated from rondymesquita/node-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "composable-flows",
"version": "1.0.3",
"description": "Compose flows with readable interface",
"repository": {
"type": "git",
"url": "git+https://github.com/rondymesquita/composable-flows.git"
},
"bugs": {
"url": "https://github.com/rondymesquita/composable-flows/issues"
},
"homepage": "https://github.com/rondymesquita/composable-flows#readme",
"main": "./dist/node/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch --bail",
"test:e2e": "jest --config ./tests/.jest.config.js",
"test:e2e:watch": "jest --config ./tests/.jest.config.js --watchAll",
"build:web": "webpack --mode=production --node-env=production",
"build:web:dev": "webpack --mode=development",
"build:web:prod": "webpack --mode=production --node-env=production",
"watch:web": "webpack --watch",
"dev:web": "webpack serve",
"build": "tsc",
"dev:node": "nodemon -w ./src ./src/index.ts",
"docs": "typedoc",
"release": "release-it"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@release-it/conventional-changelog": "^3.3.0",
"@types/jest": "^27.0.2",
"@webpack-cli/generators": "^2.4.1",
"expose-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.3.1",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"release-it": "^14.12.4",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typedoc": "^0.22.9",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}