-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "coding_challenge--connect_four",
"version": "1.0.0",
"main": "src/index.ts",
"author": "suddenlyGiovanni <[email protected]>",
"license": "MIT",
"dependencies": {
"ramda": "^0.26.1",
"ts-node": "^8.1.0",
"typescript": "^3.4.3"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/jest": "^24.0.11",
"@types/ramda": "^0.26.6",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"babel-preset-jest": "^24.6.0",
"commitizen": "^3.0.7",
"commitlint": "^7.5.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"precise-commits": "^1.0.2",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2"
},
"scripts": {
"commit": "git-cz",
"test": "jest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "precise-commits"
}
}
}