-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·91 lines (91 loc) · 2.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-ts-template",
"version": "0.1.0",
"description": "A react ts template for the initial configuration of the project.",
"main": "./dist/index.ts",
"scripts": {
"start:dev": "webpack-dev-server --config ./webpack/webpack.dev.js",
"build": "webpack --config ./webpack/webpack.prod.js",
"test": "jest ./src --passWithNoTests --config ./config/jest/jest.config.js",
"test:watch": "jest ./src --watch --passWithNoTests --config ./config/jest/jest.config.js",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "npx eslint ./src",
"lint:fix": "npm run lint:js -- --fix",
"lint:scss": "npx sass-lint -v",
"lint:scss:fix": "npx sass-lint-auto-fix --config-sass-lint .sass-lint.yml",
"prettier": "npx prettier --write './src/**/*.{js,jsx,ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://stanislav-halyn@github.com/stanislav-halyn/adress-book-app.git"
},
"author": "Stanislav Halyn <stasgalin@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/stanislav-halyn/adress-book-app/issues"
},
"homepage": "https://github.com/stanislav-halyn/adress-book-app#readme",
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"@testing-library/react-hooks": "5.1.0",
"@types/jest": "26.0.21",
"@types/react": "16.9.46",
"@types/react-css-modules": "4.6.2",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "6.0.3",
"css-loader": "4.2.1",
"cz-customizable": "6.3.0",
"dotenv-webpack": "2.0.0",
"eslint": "7.7.0",
"eslint-config-airbnb-typescript": "9.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"file-loader": "6.0.0",
"html-webpack-plugin": "4.3.0",
"husky": "4.2.5",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"mini-css-extract-plugin": "0.10.0",
"node-sass": "4.14.1",
"prettier": "2.0.5",
"sass-lint": "1.13.1",
"sass-lint-auto-fix": "0.21.0",
"sass-loader": "9.0.3",
"ts-jest": "26.2.0",
"ts-loader": "8.0.2",
"typescript": "3.9.7",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2"
},
"dependencies": {
"react": "16.13.1",
"react-css-modules": "4.7.11",
"react-dom": "16.13.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g './config/git/commitlint.js'"
}
},
"engines": {
"node": ">11.15.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/git/commitizen.js"
}
}
}