-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 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
{
"name": "livesite",
"version": "1.0.0",
"description": "",
"scripts": {
"serve": "firebase emulators:exec --project=fake --only=hosting,database devserver/boot.sh",
"build": "webpack --mode=production",
"watch": "webpack -w --mode=development",
"lint": "eslint src",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run test:smoke",
"test:smoke": "firebase emulators:exec --project=fake --only=hosting,database devserver/smoke.sh",
"deploy": "npm run build && firebase deploy"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.12.1",
"@redux-devtools/extension": "^3.2.2",
"@types/deep-equal": "^1.0.1",
"@types/jquery": "^3.5.4",
"@types/react": "^16.9.56",
"@types/react-document-title": "^2.0.4",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-router-hash-link": "^2.4.9",
"@types/react-transition-group": "^4.4.4",
"@types/sprintf-js": "^1.1.2",
"axios": "^1.7.4",
"babel-loader": "^8.1.0",
"bootstrap-material-design": "^4.1.3",
"firebase": "^11.2.0",
"firebase-tools": "^13.11.4",
"immutability-helper": "^2.9.1",
"jquery": "^3.5.1",
"moment": "^2.29.1",
"popper.js": "^1.16.1",
"react": "^17.0.2",
"react-addons-deep-compare": "0.0.1",
"react-document-title": "^2.0.3",
"react-dom": "^17.0.2",
"react-fast-compare": "^3.2.2",
"react-ga": "^3.3.1",
"react-redux": "^7.2.6",
"react-router-dom": "^7.5.2",
"react-router-hash-link": "^2.4.3",
"react-transition-group": "^2.9.0",
"redux": "^4.1.2",
"redux-localstorage-simple": "^2.4.1",
"sprintf-js": "^1.1.2",
"ts-loader": "^8.0.10",
"typescript": "^4.0.5",
"webpack": "^5.94.0",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/eslint__js": "^8.42.3",
"@types/react-dom": "^17.0.2",
"cypress": "^13.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.21.5",
"license-checker": "^24.1.0",
"prettier": "^3.3.2",
"typescript-eslint": "^7.14.1"
}
}