-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "over-hangman",
"homepage": "https://over-hangman.iwgx.io",
"version": "0.1.0",
"private": true,
"dependencies": {
"@splitbee/web": "^0.2.4",
"@types/classnames": "^2.3.0",
"@types/jest": "^26.0.23",
"@types/lodash-es": "^4.17.4",
"@types/node": "^15.6.1",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"clsx": "^1.1.1",
"lodash-es": "^4.17.21",
"mobx": "^5.15.7",
"mobx-react-lite": "^2.2.2",
"react": "^17.0.2",
"react-anime": "^3.0.3",
"react-dom": "^17.0.2",
"react-flip-move": "^3.0.4",
"react-scripts": "^4.0.3",
"react-simple-keyboard": "^2.5.169",
"typeface-oswald": "^1.1.13",
"typescript": "^4.3.2"
},
"scripts": {
"prestart": "npm run tailwind:css",
"prebuild": "npm run tailwind:css",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tailwind:css": "tailwind build src/tailwind.src.css -c tailwind.config.js -o src/tailwind.css"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"tailwindcss": "^1.9.6"
}
}