forked from oslabs-beta/react-pinpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.05 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
{
"name": "react-pinpoint",
"version": "1.0.6",
"description": "React Pinpoint is an open source utility library for measuring React component render times.",
"main": "lib/bundle.main.js",
"files": [
"lib"
],
"scripts": {
"build": "babel src --extensions .js,.ts,.tsx --out-dir dist",
"build:rollup": "rollup --config",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"check-types": "tsc",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm-run-all --parallel check-types check-format lint build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/react-pinpoint.git"
},
"author": "React Pinpoint",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/react-pinpoint/issues"
},
"keywords": [
"react-fiber"
],
"homepage": "https://github.com/oslabs-beta/react-pinpoint#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.2.5",
"jest": "26.1.0",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.28.2"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"prompt": "^1.0.0",
"typescript": "^3.9.7"
}
}