forked from morteza-jamali/exercism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "exercism",
"version": "0.0.0",
"description": "My exercism solutions",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/morteza-jamali/exercism.git"
},
"keywords": [
"morteza-jamali",
"exercism",
"solutions",
"javascript",
"typescript",
"cpp",
"python",
"c",
"csharp"
],
"author": {
"name": "Morteza Jamali",
"email": "mortezajamali4241@gmail.com",
"url": "https://morteza-jamali.github.io"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nrwl/cli": "14.5.10",
"@nrwl/workspace": "14.5.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nx": "14.5.10",
"prettier": "^2.6.2",
"typescript": "~4.7.2"
},
"workspaces": [
"packages/**"
],
"lint-staged": {
"**/*": "prettier -w -u"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/morteza-jamali/exercism/issues"
},
"homepage": "https://github.com/morteza-jamali/exercism#readme"
}