-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.67 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
{
"name": "bukvarko",
"version": "1.0.0",
"description": "Teach kids alphabet in a fun way.",
"private": true,
"scripts": {
"fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"check": "eslint 'src/**/*.{ts,tsx}' && tsc --noEmit",
"start": "parcel src/index.html",
"test": "jest",
"build": "parcel build src/index.html --no-source-maps --public-url '.'",
"predeploy": "npm run check && npm run test && npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mristin/bukvarko.git"
},
"keywords": [
"teach",
"kids",
"learn",
"alphabet",
"game"
],
"author": "Marko Ristin",
"license": "MIT",
"bugs": {
"url": "https://github.com/mristin/bukvarko/issues"
},
"homepage": "https://mristin.github.io/bukvarko",
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/__tests__/**/*.(test|spec).(ts|tsx|js)"
]
},
"devDependencies": {
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.1.4",
"@types/redux-mock-store": "^1.0.2",
"@types/testing-library__react": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"import-sort-style-module": "^6.0.0",
"jest": "^25.2.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"parcel-plugin-static-files-copy": "^2.3.1",
"prettier": "^2.0.1",
"prettier-plugin-import-sort": "0.0.4",
"redux-mock-store": "^1.5.4",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.3.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@types/deep-equal": "^1.0.1",
"@types/fscreen": "^1.0.1",
"@types/history": "^4.7.5",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/redux-thunk": "^2.1.0",
"deep-equal": "^2.0.2",
"fscreen": "^1.0.2",
"gh-pages": "^2.2.0",
"history": "^4.10.1",
"immer": "^6.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-reveal": "^1.2.2",
"react-swipeable": "^5.5.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"style.css": "^1.0.0",
"typeface-roboto": "0.0.75"
}
}