generated from acttoreact/ts-node-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.12 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
{
"name": "project-name",
"version": "0.0.3",
"description": "Project Description",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development ts-node-dev --debug --respawn --transpileOnly ./index.ts",
"docker-build": "IMAGE=$npm_package_name:latest;docker build --rm --pull -f \"./Dockerfile\" -t $IMAGE \".\"",
"docker-start": "IMAGE=$npm_package_name:latest;docker run -it -v $INIT_CWD/server:/usr/src/app/server $IMAGE",
"start": "node ./dist/index.js",
"lint": "npx eslint --config ./.eslintrc ./**/*.ts",
"test": "jest",
"test-clear": "rm -rf coverage;rm -rf dist",
"test-dev": "NODE_ENV=development npx jest --watch",
"test-coverage": "jest --coverage",
"test-coverage-dev": "NODE_ENV=development jest --coverage --watchAll",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test-full": "npm run test-clear;npm run build;npm run test;npm run test-coverage;npm run lint;npm audit;npm run docs",
"docs": "jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acttoreact/api-watcher.git"
},
"keywords": [
"acttoreact",
"a2r",
"api",
"watcher"
],
"author": "Act to React (https://a2r.com/)",
"license": "MIT",
"homepage": "https://a2r.com/",
"dependencies": {
"async-redis": "^1.1.7",
"redis": "^3.0.2",
"shortid": "^2.2.15"
},
"devDependencies": {
"@types/async-redis": "^1.1.1",
"@types/jest": "^25.1.1",
"@types/node": "^13.13.4",
"@types/redis": "^2.8.25",
"@types/shortid": "0.0.29",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-jest": "^25.5.1",
"better-docs": "^1.4.7",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"jest": "^25.5.1",
"jsdoc": "^3.6.3",
"ts-jest": "^25.4.0",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.3"
}
}