-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.23 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
{
"name": "sce-webpack",
"version": "1.0.0",
"description": "Build SCE",
"private": true,
"main": "index.js",
"directories": {
"lib": "lib",
"test": "src/test"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/register": "^7.28.3",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.35.0",
"@reduxjs/toolkit": "^2.12.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/chrome": "^0.2.5",
"@types/jasmine": "^5.1.9",
"@types/node": "^24.5.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/react-redux": "^7.1.34",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.24.1",
"babel-loader": "^10.1.1",
"babel-plugin-module-resolver": "^5.0.3",
"babel-preset-react-app": "^10.1.0",
"classnames": "^2.5.1",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"eslint": "^9.35.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.4.0",
"html-webpack-plugin": "^5.6.8",
"jasmine": "^5.10.0",
"jsdom": "^26.1.0",
"mini-css-extract-plugin": "^2.10.2",
"prettier": "3.9.6",
"remove-files-webpack-plugin": "^1.1.3",
"sass": "^1.102.0",
"sass-loader": "^16.0.5",
"ts-loader": "^9.6.2",
"typescript": "^5.9.2",
"webpack": "^5.109.2",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"scripts": {
"test": "cross-env NODE_ENV=test jasmine --config=spec/support/jasmine.js",
"build": "webpack --config webpack.prod.js",
"lint:check": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format:check": "prettier --check src/",
"format:write": "prettier --write src/"
},
"author": "Screenly, Inc.",
"dependencies": {
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"normalize-url": "^8.1.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-redux": "^9.3.0",
"sweetalert2": "^11.26.25"
},
"overrides": {
"serialize-javascript": "7.0.7",
"uuid": "11.1.1"
}
}