-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"private": true,
"name": "api-node",
"version": "1.0.0",
"description": "API teste feita em node",
"main": "src/entry.ts",
"author": "Renan Delfanti <renandelfanti@hotmail.com>",
"license": "ISC",
"scripts": {
"rebuild": "npm rebuild --target=8.1.0 --target_platform=linux --target_arch=x64 --target_libc=glibc --update-binary",
"build": "run-s build:clean build:code",
"build:clean": "rimraf dist",
"build:code": "tsc",
"dev": "nodemon src/entry.ts",
"dev:debug": "nodemon --inspect src/entry.ts",
"fmt": "prettier --write '**/*.{js,ts}'",
"fmt:p": "prettier-package-json --write",
"prod": "run-s build && node dist/entry.js",
"test": "jest --no-cache"
},
"dependencies": {
"@types/crypto-js": "^3.1.43",
"@types/express": "4.16.1",
"@types/jest": "24.0.11",
"@types/supertest": "2.0.7",
"awesome-typescript-loader": "5.2.1",
"blurhash": "1.1.3",
"body-parser": "1.19.0",
"canvas": "2.6.1",
"express": "4.16.4",
"jest": "26.0.1",
"js2xmlparser": "^3.0.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.19",
"nodemon": "2.0.4",
"npm-run-all": "4.1.5",
"prettier": "1.16.4",
"prettier-package-json": "2.1.0",
"request": "^2.88.0",
"rimraf": "2.6.3",
"socket.io": "2.3.0",
"supertest": "4.0.2",
"ts-jest": "26.0.0",
"ts-node": "8.0.3",
"typescript": "3.8.3",
"winston": "3.2.1"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"resolutions": {
"jest-diff": "25.1.0",
"pretty-format": "^25.1.0"
},
"devDependencies": {
"@types/socket.io": "2.1.8"
}
}