-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 1.88 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
{
"name": "ocr2clipboard",
"version": "0.0.2",
"description": "",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"dev": "NODE_ENV=development webpack --config webpack.dev.js",
"watch": "NODE_ENV=development webpack -w --config webpack.dev.js",
"lint": "tslint -p tsconfig.json --fix",
"test": "jest"
},
"author": "hi1280",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"npm run lint",
"git add"
],
"*.{css,scss}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/enzyme": "^3.1.17",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^24.0.1",
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"@types/react-intl": "^2.3.17",
"@types/react-measure": "^2.0.4",
"@types/styled-components": "^4.1.8",
"chrome-extension-async": "^3.3.2",
"css-loader": "^0.28.11",
"dotenv": "^6.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"husky": "^1.2.0",
"jest": "^24.1.0",
"jest-webextension-mock": "^3.5.0",
"lint-staged": "^8.1.0",
"node-sass": "^4.7.2",
"prettier": "^1.15.3",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"ts-jest": "^23.10.5",
"ts-loader": "^4.0.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^2.7.2",
"webpack": "^4.1.1",
"webpack-cli": "^3.1.1",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-intl": "^2.8.0",
"react-measure": "^2.2.4",
"styled-components": "^4.1.3"
},
"private": true
}