-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.65 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
{
"name": "my-repos",
"version": "1.3.0",
"description": "All your GitHub repos on one page",
"private": true,
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"homepage": "https://myrepos.io/",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/my-repos.git"
},
"browser": {
"react": false,
"react-dom": false
},
"license": "MIT",
"scripts": {
"lint": "eslint _ts",
"build": "rollup -c rollup.config.prod.js",
"build:dev": "rollup -c rollup.config.dev.js",
"watch": "npm-run-all --parallel watch:*",
"watch:typescript": "npm run build:dev -- --watch",
"watch:jekyll": "jekyll serve --livereload",
"start": "jekyll serve",
"test": "npm run lint",
"upgrade": "npm-check -u && npm audit fix",
"bump": "bump js/* --tag --push --all",
"release": "npm run upgrade && npm run test && npm run build && npm run bump"
},
"devDependencies": {
"@jsdevtools/eslint-config": "^1.0.3",
"@jsdevtools/version-bump-prompt": "^6.0.5",
"@types/node": "^14.0.23",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"eslint": "^7.4.0",
"eslint-plugin-react": "^7.20.3",
"npm-check": "^5.8.0",
"npm-run-all": "^4.1.3",
"rollup": "^2.22.0",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.7"
},
"dependencies": {
"octicons": "^8.5.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}