-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.37 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.37 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
{
"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/preset-typescript": "^7.27.1",
"@babel/register": "^7.28.3",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@reduxjs/toolkit": "^2.9.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.1.11",
"@types/jasmine": "^5.1.9",
"@types/jest": "^30.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.5.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/react-redux": "^7.1.34",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.24.1",
"babel-loader": "^10.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-preset-react-app": "^10.1.0",
"classnames": "^2.5.1",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.0.0",
"css-loader": "^7.1.2",
"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.4",
"jasmine": "^5.10.0",
"jsdom": "^26.1.0",
"mini-css-extract-plugin": "^2.9.4",
"prettier": "3.6.2",
"puppeteer": "^24.21.0",
"remove-files-webpack-plugin": "^1.1.3",
"sass": "^1.92.1",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"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",
"cookie": "^1.0.2",
"normalize-url": "^8.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-redux": "^9.2.0",
"sweetalert2": "^11.23.0"
}
}