-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 3.16 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-toy-robot",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll=false --coverage",
"eject": "react-scripts eject",
"linting": "yarn lint:ts && yarn lint:style",
"lint:ts": "eslint 'src/**/*.ts?(x)'",
"lint:ts:fix": "eslint --fix 'src/**/*.ts?(x)'",
"lint:style": "stylelint 'src/**/*.ts?(x)'",
"lint:style:fix": "stylelint 'src/**/*.ts?(x)' --fix",
"predeploy": "yarn linting && yarn build",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"stylelint",
"git add"
]
},
"dependencies": {
"@react-yuki/hooks": "^0.0.34",
"@react-yuki/icons": "^0.0.34",
"@react-yuki/ui": "^0.0.34",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-spring": "^8.0.27",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"styled-components": "^4.3.2",
"styled-system": "^5.1.1",
"typesafe-actions": "^4.4.2"
},
"devDependencies": {
"@testing-library/react": "^9.1.3",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/node": "12.7.2",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/react-redux": "^7.1.2",
"@types/redux-mock-store": "^1.0.1",
"@types/styled-components": "^4.1.18",
"@types/styled-system": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"csstype": "^2.6.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^2.0.1",
"gh-pages": "^2.1.1",
"husky": "^3.0.4",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"react-scripts": "3.1.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"stylelint": "^10.1.0",
"stylelint-config-idiomatic-order": "^7.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^3.0.1",
"stylelint-processor-styled-components": "^1.8.0",
"ts-jest": "^24.0.2",
"typescript": "3.5.3"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"homepage": "https://kidjp85.github.io/react-toy-robot",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"author": "Asher Nguyen <[email protected]>",
"license": "MIT"
}