forked from CantaraJS/cantara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.18 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "cantara",
"version": "0.0.0-development",
"description": "",
"main": "dist/index.js",
"bin": {
"cantara": "dist/index.js",
"ctra": "dist/index.js"
},
"scripts": {
"start": "nodemon --config ./nodemon_config.json --watch src/**/*.ts --watch .env --exec cross-env NODE_ENV=development ts-node src/index.ts",
"debug": "node --inspect-brk -r ts-node/register src/index.ts",
"build": "tsc -p .",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/ncp": "^2.0.3",
"@types/node": "^13.7.0",
"@types/prettier": "^1.19.0",
"@types/update-notifier": "^4.1.0",
"@types/webpack-dev-server": "^3.10.0",
"@types/yargs": "^15.0.4",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.1.0",
"dotenv": "^8.2.0",
"nodemon": "^2.0.2",
"semantic-release": "^17.0.4",
"ts-node": "^8.6.2"
},
"dependencies": {
"@alexlafroscia/yaml-merge": "^1.0.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.1.3",
"@types/jest": "^24.9.1",
"array-flat-polyfill": "^1.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-typescript-metadata": "^0.2.2",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"clean-webpack-plugin": "^3.0.0",
"commander": "^4.1.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"enquirer": "^2.3.5",
"file-loader": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.0.0-beta.11",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.9.0",
"ncp": "^2.0.0",
"nodemon-webpack-plugin": "^4.2.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.26",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"react-refresh": "^0.7.2",
"serverless": "^1.67.3",
"serverless-offline": "^5.12.1",
"serverless-webpack": "^5.3.1",
"slash": "^3.0.0",
"style-loader": "^1.1.3",
"terminal-link": "^2.1.1",
"terser-webpack-plugin": "^2.3.5",
"ts-jest": "^24.3.0",
"tsc-silent": "^1.2.1",
"typescript": "^3.8.3",
"update-notifier": "^4.1.0",
"url-loader": "^3.0.0",
"wait-port": "^0.2.7",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-dev-server": "^3.10.2",
"webpack-merge": "^4.2.2",
"webpack-notifier": "^1.8.0",
"webpack-pwa-manifest": "^4.2.0",
"workbox-webpack-plugin": "^4.3.1",
"yargs": "^15.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/CantaraJS/cantara.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}