-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "@devesharp/helpers-js",
"version": "0.1.5",
"private": false,
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.json",
"dev": "tsc -w -p tsconfig.json"
},
"husky": {
"hooks": {
"pre-commit": "yarn build && git add ."
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testEnvironment": "node",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"peerDependencies": {},
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/jest": "^24.0.25",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"common": "^0.2.5",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"saslprep": "^1.0.3",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"dependencies": {
"md5": "^2.2.1",
"case": "^1.6.2",
"crypto": "^1.0.1",
"sha1": "^1.1.1",
"date-fns": "^2.4.1",
"base64url": "^3.0.1",
"bcrypt": "^3.0.7"
}
}