-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.36 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
{
"name": "react-expire",
"description": "React component for managing time expiration",
"version": "1.0.2",
"main": "dist/Expire.js",
"typings": "dist/Expire.d.ts",
"scripts": {
"build:prod": "NODE_ENV=production tsc --outDir dist --declaration src/Expire.tsx && parcel build src/Expire.tsx --experimental-scope-hoisting",
"build:dev": "NODE_ENV=development tsc --outDir dist --declaration src/Expire.tsx && parcel build src/Expire.tsx --experimental-scope-hoisting",
"watch": "NODE_ENV=development parcel src/Expire.tsx",
"example": "parcel example/index.html --open",
"typeCheck": "tsc --noEmit",
"typeCheck:watch": "tsc --noEmit --watch",
"test": "jest",
"prettier": "prettier --write '**/*.{js,ts,tsx}'",
"lint:js": "eslint **/*.{js,jsx}",
"lint:ts": "tslint **/*.{ts,tsx}",
"lint": "npm run lint:js && npm run lint:ts",
"size": "size-limit",
"prepublishOnly": "npm run typeCheck && npm run lint && npm run prettier && npm run build:prod"
},
"repository": {
"type": "git",
"url": "https://github.com/typical000/react-expire"
},
"author": "Pavel Davydov",
"licence": "MIT",
"dependencies": {
"react": "^16.7.0"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.0.0",
"lint-staged": "^8.1.0",
"parcel-bundler": "^1.10.3",
"parcel-plugin-typed-css-modules": "^1.1.0",
"postcss-modules": "^1.4.1",
"prettier": "^1.16.0",
"react-dom": "^16.7.0",
"size-limit": "^0.21.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.4"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
],
"**/*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}