-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.3 KB
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
{
"name": "hslzone",
"version": "0.1.0",
"private": true,
"dependencies": {
"@statecharts/xstate-viz": "^0.2.0",
"@types/jest": "24.0.12",
"@types/node": "12.0.0",
"@types/react": "16.8.17",
"@types/react-dom": "16.8.4",
"@xstate/react": "^0.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"xstate": "^4.5.0"
},
"scripts": {
"start": "yarn tailwind && react-scripts start",
"build": "yarn tailwind && react-scripts build",
"test": "react-scripts test",
"test-all": "CI=true yarn test",
"eject": "react-scripts eject",
"tailwind": "tailwind build src/tailwind.src.css -c tailwind.js -o src/tailwind.css",
"purgecss": "purgecss -c purgecss.config.js -o src"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/classnames": "^2.2.7",
"classnames": "^2.2.6",
"husky": "^2.2.0",
"purgecss": "^1.3.0",
"tailwindcss": "^0.7.4",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-push": "yarn test-all && yarn build"
}
}
}