-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "@barajs/express",
"version": "1.7.0",
"description": "Bara Express integration module",
"repository": {
"type": "git",
"url": "git@github.com:barajs/express.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"start": "tsnd --debounce 3000 --respawn server.ts",
"compile": "tsc -b",
"format": "prettier --write '{.,src/**}/*.{js,jsx,ts,tsx}'",
"semantic-release": "semantic-release"
},
"dependencies": {
"@barajs/core": "^3.0.0-alpha.427",
"@barajs/formula": "^3.0.0-alpha.459",
"express": "4.17.1"
},
"devDependencies": {
"@semantic-release/changelog": "3.0.4",
"@semantic-release/commit-analyzer": "6.3.0",
"@semantic-release/git": "7.0.16",
"@semantic-release/github": "5.5.4",
"@semantic-release/npm": "5.2.0",
"@types/express": "4.17.1",
"prettier": "1.18.2",
"semantic-release": "15.13.27",
"ts-node-dev": "1.0.0-pre.43",
"typescript": "3.6.4"
}
}