-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.31 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
{
"name": "game",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bugsnag/js": "^6.5.2",
"@bugsnag/plugin-react": "^6.5.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.5",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.5",
"boardgame.io": "^0.39.3",
"esm": "^3.2.25",
"http-status-codes": "^1.4.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"autoprefixer": "^9.7.5",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.5",
"ngrok": "^3.2.7",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"redux": "^4.0.5",
"tailwindcss": "^1.2.0",
"typescript": "^3.8.3"
},
"scripts": {
"start": "run-p start:*",
"start:web": "react-scripts start",
"start:server": "cd ../server/ && npm start",
"start-exposed": "node expose.js",
"prestart:web": "npm run build:styles",
"prebuild": "npm run build:styles",
"build": "react-scripts build",
"build:styles": "postcss src/App.pcss -o src/App.css",
"lint": "eslint src/**/*.{js,jsx}",
"format": "prettier --write \"src/**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"",
"changelog": "github_changelog_generator",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}