-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.9 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.9 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
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
{
"name": "alight-creator",
"version": "0.1.0",
"private": true,
"dependencies": {
"awilix": "^4.2.3",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"date-fns": "^2.8.1",
"immer": "^5.1.0",
"ky": "^0.16.1",
"ramda": "^0.26.1",
"rc-pagination": "^1.20.11",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hook-form": "^6.3.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-table": "^7.5.0",
"react-transition-group": "^4.4.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.1",
"sweetalert2": "^11.1.2",
"swr": "^0.5.6",
"typesafe-actions": "^5.1.0",
"universal-cookie": "^4.0.4"
},
"scripts": {
"build:tailwind": "postcss src/tailwind.css -o src/tailwind.generated.css",
"watch:tailwind": "postcss -w src/tailwind.css -o src/tailwind.generated.css",
"start": "run-p watch:tailwind start:react",
"start:react": "react-scripts start",
"prebuild": "npm run build:tailwind",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:diff": "git diff --diff-filter=d --name-only --cached --relative | grep '\\.{ts,tsx}$' | xargs eslint",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"init-env": "cp .env.sample .env"
},
"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": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/ramda": "^0.26.38",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.3",
"@types/react-table": "^7.0.20",
"@types/react-transition-group": "^4.4.2",
"@types/styled-components": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"autoprefixer": "^9.8.4",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.1.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"prettier": "^1.19.1",
"tailwindcss": "^1.4.6",
"typescript": "~3.9.7"
}
}