-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.58 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
{
"name": "toastmaster-club-meeting-agenda",
"version": "1.0.1",
"description": "Create a weekly meeting agenda for your club (Toastmasters Club)",
"repository": {
"type": "git",
"url": "git://github.com/saroz/cma"
},
"author": "Saroz Poddar <[email protected]>",
"private": true,
"scripts": {
"deploy": "npm run build && firebase deploy",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint './app/**/*.js'",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:eslint:fix": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"pretest": "npm run test:clean && npm run lint",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prettify": "prettier --write"
},
"lint-staged": {
"*.js": [
"npm run lint:css",
"npm run lint:eslint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-regular-svg-icons": "^5.10.1",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"array-move": "^2.1.0",
"gh-pages": "^2.0.1",
"jspdf": "^1.5.3",
"localforage": "^1.7.3",
"prop-types": "^15.7.2",
"react": "^16.8.1",
"react-compound-timer": "^1.1.4",
"react-dom": "^16.8.1",
"react-ga": "^2.6.0",
"react-helmet": "^5.2.0",
"react-markdown": "^4.0.8",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.0.1",
"react-simplemde-editor": "^4.0.0",
"styled-components": "^4.1.3"
},
"devDependencies": {
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "7.11.1",
"lint-staged": "7.3.0",
"node-sass": "^4.12.0",
"prettier": "1.14.3",
"stylelint": "9.6.0",
"stylelint-config-recommended": "2.1.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.5.0"
}
}