forked from dzcode-io/dzcode.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.3 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
{
"name": "dzcode.io-fullstack",
"version": "1.0.0",
"description": "dzCode.io fullstack code",
"main": "index.js",
"scripts": {
"eslint:check": "eslint \"**/*.*\" --report-unused-disable-directives",
"eslint:fix": "eslint \"**/*.*\" --quiet --fix",
"test": "jest src",
"prettier:check": "prettier \"**/*.*\" --check --ignore-path ./eslint.prettierignore",
"prettier:fix": "prettier \"**/*.*\" --write --ignore-path ./eslint.prettierignore",
"build": "tsc",
"build:watch": "tsc --watch"
},
"repository": {
"type": "git",
"repository": "https://github.com/dzcode-io/dzcode.io.git"
},
"author": {
"email": "contact@zakiii.com",
"name": "Zakaria Mansouri",
"url": "https://www.zakiii.com"
},
"license": "MIT",
"dependencies": {
"@types/fs-extra": "^9.0.1",
"@types/node": "^10.17.13",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-unicorn": "^21.0.0",
"fs-extra": "^9.0.1",
"prettier": "^1.19.1",
"source-map-support": "^0.5.16",
"typescript": "~3.7.4"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"jest": "^26.5.3",
"ts-jest": "^26.4.1"
}
}