forked from yasnaraj/react-calendar-events-example
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
103 lines (103 loc) · 3.41 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
92
93
94
95
96
97
98
99
100
101
102
103
{
"homepage": "https://cal.openintents.org",
"name": "oi-calendar",
"author": "[email protected]",
"version": "0.11.0",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@stacks/blockchain-api-client": "^0.59.0",
"@stacks/connect": "^5.0.5",
"@stacks/profile": "^1.5.0-alpha.0",
"@stacks/storage": "^1.5.0-alpha.0",
"@stacks/transactions": "^1.4.1",
"@types/react": "^17.0.5",
"connected-react-router": "^6.9.1",
"history": "^5.0.0",
"ical.js": "^1.4.0",
"ics": "^2.27.0",
"matrix-js-sdk": "^10.1.0",
"moment": "^2.29.1",
"npm": "^7.12.1",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-big-calendar": "^0.33.2",
"react-bootstrap": "^1.6.0",
"react-datetime": "^3.0.4",
"react-dom": "^17.0.2",
"react-jdenticon": "^0.0.9",
"react-pdf": "^5.3.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"typescript": "^4.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "REACT_APP_VERSION=$(node -pe 'require(\"./package.json\").version') react-scripts build",
"test": "react-scripts test --env=jsdom",
"testflow": "mocha spec/*.spec.js --require babel-register --presets @babel/preset-stage-2",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint --ext js,jsx ./src ./spec",
"lint:fix": "eslint --fix --ext js,jsx ./src ./spec",
"prettier-js": "prettier --single-quote --write \"src/**/*.js\"",
"prettier-css": "prettier --single-quote --parser css --write \"src/**/*.css\""
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.3",
"@babel/node": "7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-stage-2": "7.0.0",
"@babel/register": "7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"mocha": "6.0.1",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"redux-logger": "^3.0.6"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead"
],
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run prettier-js",
"npm run lint:fix",
"git add"
],
"src/**/*.css": [
"npm run prettier-css",
"git add"
]
}
}