-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
49
50
51
52
53
54
{
"name": "github-codespaces-typescript",
"version": "0.0.1-dev",
"description": "Projeto utilizado para apresentação do Github Codespaces.",
"main": "./dist/bin/www.js",
"engines": {
"node": ">=14.4.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint . --ext .ts,.js",
"format": "npx prettier '**/*.ts' '**/*.js' --write",
"prebuild": "npx rimraf ./dist",
"build": "npx tsc",
"build:watch": "npx tsc -w",
"start": "node ./dist/bin/www.js",
"start:watch": "npx nodemon ./dist/bin/www.js"
},
"_moduleAliases": {
"@app": "dist/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coder-arena/github-codespaces-typescript.git"
},
"keywords": [
"Node.JS",
"TypeScript",
"Github Codespaces"
],
"author": "Marcos V. Leal <marcosleal@coderarena.com.br>",
"license": "MIT",
"bugs": {
"url": "https://github.com/coder-arena/github-codespaces-typescript/issues"
},
"homepage": "https://github.com/coder-arena/github-codespaces-typescript#readme",
"dependencies": {
"express": "^4.17.1",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.9",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
}
}