-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.53 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
{
"name": "cognitive-distortion",
"version": "1.0.0",
"description": "",
"main": "./public/index.html",
"scripts": {
"editorconfig": "editorconfig-checker",
"lint-script": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint-script:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"lint-style": "stylelint **/*.css",
"lint-style:fix": "stylelint **/*.css --fix",
"test": "npm run editorconfig && npm run lint-script && npm run lint-style",
"test:fix": "npm run lint-script:fix && npm run lint-style:fix",
"start": "webpack serve --mode development",
"build": "webpack --mode production"
},
"pre-commit": "test",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viktor-ulyankin/cognitive-distortion.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.1",
"cssnano": "^5.0.1",
"editorconfig-checker": "^4.0.2",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"lint-staged": "^12.3.0",
"postcss-css-variables": "^0.17.0",
"postcss-custom-media": "^8.0.0",
"postcss-import": "^14.0.1",
"postcss-loader": "^5.2.0",
"postcss-nested": "^5.0.5",
"pre-commit": "^1.2.2",
"style-loader": "^2.0.0",
"stylelint": "^13.13.0",
"stylelint-config-recess-order": "^2.4.0",
"stylelint-config-standard": "^22.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.12.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^6.0.1",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"remark-external-links": "^8.0.0"
}
}