-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 KB
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
{
"private": true,
"name": "nodeless",
"description": "Nodeless is a framework for a nodejs function based backend infrastructure",
"version": "0.0.1",
"author": {
"name": "Christopher Abs",
"email": "flavio@flaviocopes.com"
},
"contributors": [
{
"name": "Paul Spende",
"email": "paul.spende@gmail.com"
}
],
"scripts": {
"postinstall": "yarn compile",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"compile": "lerna run build --parallel"
},
"devDependencies": {
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-typescript": "^0.14.0",
"jenkins-mocha": "^8.0.0",
"lerna": "^3.16.3",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-node": "^8.3.0"
},
"dependencies": {
"express": "^4.17.1",
"typescript": "3.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/abrax20/nodeless.git"
},
"workspaces": [
"packages/*"
]
}