-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "event-from-demo",
"version": "0.1.0",
"private": true,
"dependencies": {
"@radix-ui/react-checkbox": "^0.0.14",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-label": "^0.0.12",
"@stitches/react": "^0.1.9",
"event-from": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-interactive": "^1.1.1",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"browserslist-config-css-grid": "^1.0.0",
"gh-pages": "^3.1.0",
"react-scripts": "4.0.3",
"typescript": "^4.2.4"
},
"scripts": {
"dev": "npm install ../ && npm start",
"devCleanup": "npm install --save event-from@latest",
"deploy": "gh-pages --dist build --message Built-`date +%Y%m%d`-`date +%H%M%S`",
"predeploy": "npm run devCleanup && npm run lint && npm test -- --watchAll=false && npm run build",
"lint": "eslint src",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"last 2 versions or > 0.2% and not dead and extends browserslist-config-css-grid"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}