This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "calendar",
"description": "Calendar app",
"author": "Dmitriy Shved <[email protected]>",
"version": "0.1.0",
"homepage": "https://frontendcalendar.tk",
"devDependencies": {
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"prettier": "^1.10.2",
"prettier-eslint": "^8.8.1",
"prettier-eslint-cli": "^4.7.0",
"react-scripts": "1.1.0"
},
"dependencies": {
"@types/isotope-layout": "^3.0.4",
"axios": "^0.17.1",
"isotope": "^1.0.0-alpha.3",
"isotope-layout": "^3.0.6",
"moment": "^2.20.1",
"query-string": "^6.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-highlight-words": "^0.11.0",
"react-preloader-icon": "^0.1.1",
"styled-components": "^3.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"lint": "eslint ./src",
"format": "prettier-eslint --trailing-comma all --no-semi --single-quote --print-width 120 --jsx-bracket-same-line --write 'package.json' 'src/**/*.js'"
},
"lint-staged": {
"*.{js,jsx}": [
"format",
"eslint",
"git add"
]
},
"bugs": {
"url": "https://github.com/web-standards-ru/calendar-app/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/web-standards-ru/calendar-app.git"
}
}