-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
89 lines (89 loc) · 2.67 KB
/
package.json
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
{
"name": "expensify-common",
"version": "2.0.107",
"author": "Expensify, Inc.",
"description": "Expensify libraries and components shared across different repos",
"homepage": "https://expensify.com",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"API.md",
"README.md",
"LICENSE.md"
],
"scripts": {
"grunt": "grunt",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json && cp ./lib/*.d.ts ./dist",
"test": "jest",
"lint": "eslint lib/",
"prettier": "prettier --write lib/",
"patch": "npm --no-git-tag-version version patch",
"update-tlds": "echo \"$(curl -s https://data.iana.org/TLD/tlds-alpha-by-domain.txt | sed '1d' | awk '{print length, $0}' - | sort -n -r | cut -d \" \" -f2- )|SJC|RNO|LAX\" | tr '\\n' '|' | sed s'/.$//' | printf \"const TLD_REGEX='$(cat -)';\\n\\nexport default TLD_REGEX;\\n\" > lib/tlds.jsx"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Expensify/JS-Libs.git"
},
"dependencies": {
"awesome-phonenumber": "^5.4.0",
"classnames": "2.5.0",
"clipboard": "2.0.11",
"html-entities": "^2.5.2",
"jquery": "3.6.0",
"localforage": "^1.10.0",
"lodash": "4.17.21",
"prop-types": "15.8.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"semver": "^7.6.3",
"simply-deferred": "git+https://github.com/Expensify/simply-deferred.git#77a08a95754660c7bd6e0b6979fdf84e8e831bf5",
"ua-parser-js": "^1.0.38"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@lwc/eslint-plugin-lwc": "^1.8.2",
"@types/jest": "^29.5.13",
"@types/jquery": "^3.5.30",
"@types/lodash": "^4.17.10",
"@types/react-dom": "^18.3.0",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-jest": "^29.0.0",
"babelify": "10.0.0",
"eslint": "^8.57.1",
"eslint-config-expensify": "^2.0.59",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^28.8.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
"grunt": "1.6.1",
"grunt-chokidar": "1.0.2",
"grunt-eslint": "25.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"jit-grunt": "^0.10.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
]
]
},
"jest": {
"testEnvironment": "jsdom"
}
}