-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@barajs/loader",
"version": "1.0.0",
"description": "Bara file loader",
"repository": {
"type": "git",
"url": "git@github.com:barajs/loader.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": "yarn compile:tsc",
"compile:tsc": "tsc -b",
"compile:webpack": "webpack --mode=production",
"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.450",
"@barajs/fs": "1.0.0",
"@types/graceful-fs": "4.1.3",
"@types/mkdirp": "0.5.2",
"graceful-fs": "4.2.3",
"js-yaml": "3.13.1",
"mkdirp": "0.5.1"
},
"devDependencies": {
"@semantic-release/changelog": "3.0.5",
"@semantic-release/commit-analyzer": "6.3.1",
"@semantic-release/git": "7.0.17",
"@semantic-release/github": "5.5.5",
"@semantic-release/npm": "5.3.2",
"@types/js-yaml": "3.12.1",
"prettier": "1.18.2",
"semantic-release": "15.13.28",
"ts-loader": "6.2.1",
"ts-node-dev": "1.0.0-pre.43",
"typescript": "3.6.4",
"webpack": "4.41.2",
"webpack-cli": "3.3.9"
}
}