-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.81 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
{
"name": "passzero-frontend",
"version": "0.0.5",
"homepage": "https://github.com/boompig/passzero",
"authors": [
"Daniel Kats <dbkats@cs.toronto.edu>"
],
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"private": true,
"scripts": {
"lint": "yarn run eslint typescript/**/*.ts typescript/**/*.tsx",
"lint:common": "eslint typescript/common/*.ts",
"lint:links-bundle": "eslint 'typescript/links-bundle/**/*.ts?(x)'",
"lint:new-link-bundle": "eslint 'typescript/new-link-bundle/**/*.ts?(x)'",
"lint:entries-bundle": "eslint 'typescript/entries-bundle/**/*.ts?(x)'",
"lint:common-modules": "eslint typescript/common-modules/*.ts",
"build": "yarn webpack --mode=development",
"build:watch": "yarn webpack --mode=development --watch",
"build:prod": "yarn webpack --mode=production",
"build:prod:watch": "yarn webpack --mode=production --watch",
"heroku-postbuild": "make clean && make ts-compile && make minify && yarn build:prod"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@msgpack/msgpack": "^2.7.1",
"@types/js-cookie": "^2.2.6",
"@types/node": "^16.10.2",
"argon2-browser": "^1.18.0",
"base64-loader": "^1.0.0",
"bootstrap": "5.2.3",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"clean-css": "^5.0.1",
"clean-css-cli": "^5.1.0",
"clipboard": "2.0.8",
"csslint": "^1.0.5",
"csstype": "^3.0.6",
"js-cookie": "3.0.1",
"lodash": "^4.17.20",
"moment": "^2.29.4",
"react": "^17.0.1",
"react-bootstrap": "2.7.2",
"react-dom": "^17.0.1",
"react-tooltip": "^4.2.14",
"tweetnacl": "^1.0.3",
"typescript": "^4.4.4",
"uglify-js": "^3.12.8"
},
"devDependencies": {
"@types/clipboard": "^2.0.1",
"@types/lodash": "^4.14.175",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"css-loader": "^6.7.3",
"css-modules-typescript-loader": "^4.0.1",
"eslint": "^6.1.3",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.32.2",
"mini-css-extract-plugin": "^2.7.5",
"react-scripts": "^5.0.1",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.2",
"tablesorter": "^2.31.3",
"ts-loader": "^9.2.6",
"webpack": "5",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.9.1"
},
"resolutions": {
"@types/react": "^17.0.2"
}
}