-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.66 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
{
"name": "reacts-template",
"version": "1.0.0",
"description": "",
"author": "Josan Coba (https://github.com/Josan-Coba)",
"license": "UNLICENSED",
"private": true,
"scripts": {
"build": "webpack",
"cy:open": "cypress open --e2e",
"i18n:extract": "i18next",
"serve": "webpack serve --mode=development",
"test": "npm run test:types && npm run test:lint && npm run test:specs && npm run test:components && npm run test:prettier && npm run test:cy",
"test:components": "ts-mocha -p tsconfig.tests.json --require global-jsdom/register 'src/web/**/*.spec.{ts,tsx}'",
"test:lint": "eslint \"./**/*.[tj]s?(x)\"",
"test:prettier": "prettier --check .",
"test:specs": "ts-mocha -p tsconfig.tests.json 'src/core/**/*.spec.ts'",
"test:types": "tsc --project tsconfig.build.json --noEmit",
"test:cy": "cypress run"
},
"dependencies": {
"classnames": "2.3.1",
"i18next": "21.8.0",
"i18next-browser-languagedetector": "6.1.4",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-i18next": "11.16.9"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.1",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.2.0",
"@types/chai": "4.3.1",
"@types/chai-dom": "0.0.13",
"@types/mocha": "9.1.1",
"@types/node": "17.0.31",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"autoprefixer": "10.4.7",
"chai": "4.3.6",
"chai-dom": "1.11.0",
"copy-webpack-plugin": "10.2.4",
"css-loader": "6.7.1",
"cypress": "10.0.1",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"eslint-webpack-plugin": "3.1.1",
"favicons-webpack-plugin": "5.0.2",
"global-jsdom": "8.4.0",
"html-webpack-plugin": "github:josan-coba/html-webpack-plugin",
"i18next-parser": "6.4.0",
"jsdom": "19.0.0",
"mini-css-extract-plugin": "2.6.0",
"mocha": "10.0.0",
"postcss": "8.4.13",
"postcss-custom-properties": "12.1.7",
"postcss-loader": "6.2.1",
"prettier": "2.6.2",
"sinon": "14.0.0",
"sinon-chai": "3.7.0",
"source-map-loader": "3.0.1",
"tailwindcss": "3.0.24",
"ts-loader": "9.3.0",
"ts-mocha": "10.0.0",
"typescript": "4.7.2",
"webpack": "5.72.1",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0"
}
}