-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
38 lines (38 loc) · 1.29 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
{
"name": "amp-github-apps",
"description": "A collection of GitHub Apps for the AMP Project",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"author": "The AMP HTML authors",
"repository": {
"type": "git",
"url": "https://github.com/ampproject/amp-github-apps.git"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"fix": "npm run lint -- --fix",
"print-system-versions": "echo \"Using node $(node --version)\"; echo \"Using npm $(npm --version)\"",
"replace-secrets": "node bin/replace-secrets.js",
"unredact-env": "read -p \"This will overwrite existing .env file. Press enter to continue.\n\" && node bin/unredact-env.js"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-notice": "0.9.10",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-sort-imports-es6-autofix": "0.6.0",
"eslint-plugin-sort-requires": "2.1.0",
"kleur": "4.1.5",
"prettier": "3.4.2",
"react": "18.3.1",
"typescript": "5.7.2",
"yaml": "2.6.1"
}
}