This repository has been archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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
{
"name": "react-screen-burn",
"version": "1.0.11",
"description": "React component to help prevent screen burn in (for example on wall panels)",
"author": "Nimvelo <hello@nimvelo.com>",
"contributors": [
"Adam Bowles <adam.bowles@nimvelo.com>"
],
"license": "MIT",
"repository": "nimvelo/react-screen-burn",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"scripts": {
"test": "react-scripts test",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "npm run lint && npm run format && npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"postpublish": "git push --tags",
"format": "npm-run-all -p format:*",
"format:ts": "prettier --config .prettierrc.json \"src/**/*.{ts,tsx}\" --write",
"format:styles": "prettier --config .prettierrc.json \"src/**/*.scss\" --write",
"lint": "npm-run-all -p lint:*",
"lint:ts": "eslint -c .eslintrc.json \"src/**/*.{ts,tsx}\"",
"lint:styles": "stylelint \"src/**/*.scss\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "npm run lint:ts",
"*.scss": "npm run lint:styles"
},
"devDependencies": {
"@svgr/rollup": "5.0.1",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.4.0",
"@types/jest": "24.0.25",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
"@typescript-eslint/eslint-plugin": "2.16.0",
"@typescript-eslint/parser": "2.16.0",
"eslint-config-prettier": "6.9.0",
"husky": "4.0.7",
"lint-staged": "9.5.0",
"node-sass": "4.13.0",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-scripts": "3.3.0",
"rollup": "1.29.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-postcss": "2.0.3",
"rollup-plugin-typescript": "1.0.1",
"stylelint": "12.0.1",
"stylelint-config-prettier": "8.0.1",
"stylelint-config-property-sort-order-smacss": "5.2.0",
"stylelint-config-recommended": "3.0.0",
"typescript": "3.7.4"
},
"resolutions": {
"react-scripts/eslint-config-react-app": "5.0.1"
},
"files": [
"dist"
]
}