-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.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
{
"private": true,
"name": "taskyn",
"version": "0.1.0",
"description": "node clean architecture: taskyn",
"main": "build/index.js",
"repository": "https://github.com/aba-soft/taskyn-server",
"author": "Erfan Yousefifar",
"license": "UNLICENSED",
"scripts": {
"dev": "ts-node-dev index.ts",
"clean": "rimraf build",
"typedoc": "typedoc --readme ./README.md",
"prepack": "npm run clean && tsc && npm run typedoc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/nanoid": "3.0.0",
"@types/node": "14.14.31",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.28.1",
"@typescript-eslint/parser": "4.28.1",
"dotenv": "10.0.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-security": "1.4.0",
"jest": "27.0.6",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-jest": "27.0.3",
"ts-node-dev": "1.1.7",
"typedoc": "0.21.2",
"typescript": "4.3.4"
},
"dependencies": {
"aba-node": "0.2.3",
"nanoid": "3.1.23",
"uuid": "8.3.2"
}
}