-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.26 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
{
"name": "sudden",
"version": "1.0.12",
"description": "A high-level API framework built on top of express",
"keywords": [
"express",
"api",
"http server"
],
"author": {
"name": "Etienne Martin",
"url": "https://github.com/etienne-martin"
},
"repository": {
"type": "git",
"url": "https://github.com/etienne-martin/sudden.js"
},
"bugs": {
"url": "https://github.com/etienne-martin/sudden.js/issues"
},
"engines": {
"node": ">= 8.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"private": false,
"bin": {
"sudden": "./bin/sudden"
},
"scripts": {
"dev": "concurrently 'webpack --mode development --watch' 'tsc --watch'",
"build": "concurrently 'webpack --mode production' 'tsc'",
"test": "jest src --coverage --verbose --runInBand",
"test:watch": "jest src --coverage --verbose --runInBand --watch",
"coverage": "coveralls < ./coverage/lcov.info"
},
"dependencies": {
"@babel/core": "7.5.0",
"@babel/preset-env": "7.5.5",
"@babel/preset-typescript": "7.3.3",
"babel-loader": "8.0.6",
"body-parser": "1.19.0",
"chokidar": "3.5.1",
"colors": "1.3.3",
"console-clear": "1.1.1",
"cookie-parser": "1.4.4",
"express": "4.17.1",
"express-async-errors": "3.1.1",
"fork-ts-checker-webpack-plugin": "1.4.3",
"glob": "7.1.4",
"minimist": "1.2.3",
"rimraf": "2.6.3",
"touch": "3.1.0",
"webpack": "4.36.0",
"webpack-node-externals": "1.7.2"
},
"devDependencies": {
"@types/cookie-parser": "1.4.1",
"@types/express": "4.17.0",
"@types/jest": "24.0.17",
"@types/minimist": "1.2.0",
"@types/node": "12.6.8",
"@types/recursive-readdir": "2.2.0",
"@types/rimraf": "2.0.2",
"@types/touch": "3.1.1",
"@types/webpack": "4.32.1",
"@types/webpack-node-externals": "1.6.3",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"concurrently": "4.1.2",
"coveralls": "3.0.6",
"eslint": "6.1.0",
"eslint-config-prettier": "6.0.0",
"eslint-loader": "2.2.1",
"eslint-plugin-prettier": "3.1.0",
"jest": "24.8.0",
"prettier": "1.18.2",
"ts-jest": "24.0.2",
"typescript": "3.5.3",
"webpack-cli": "3.3.5"
}
}