-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.92 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.92 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
87
88
89
90
91
92
93
94
{
"name": "wisebits",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/EmeraldWeb/wisebits.git"
},
"author": "EmeraldWeb",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmeraldWeb/wisebits/issues"
},
"homepage": "https://github.com/EmeraldWeb/wisebits#readme",
"main": "src/index.tsx",
"browserslist": [
"defaults"
],
"scripts": {
"dev": "webpack serve --mode=development --no-client-overlay-warnings",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"serve": "webpack serve --mode=production --no-client-overlay-warnings",
"prod": "npm run build && npm run serve",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "npm run lint:tsx && npm run lint:scss",
"lint:fix": "npm run lint:tsx:fix && npm run lint:scss:fix",
"lint:tsx": "eslint src",
"lint:tsx:fix": "eslint src --fix",
"lint:scss": "stylelint src/**/*.scss",
"lint:scss:fix": "stylelint src/**/*.scss --fix"
},
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@reduxjs/toolkit": "^1.9.3",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/uuid": "^9.0.1",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"css-modules-typescript-loader": "^4.0.1",
"file-loader": "^6.2.0",
"jsdom": "^21.1.0",
"node-sass": "^8.0.0",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-concatenate-reducers": "^1.0.0",
"redux-saga": "^1.2.2",
"reset-css": "^5.0.1",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-esm-transformer": "^1.0.0",
"react-test-renderer": "^18.2.0",
"stylelint": "^15.2.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-scss": "^4.4.0",
"ts-jest": "^29.0.5",
"webpack-dev-server": "^4.11.1"
}
}