-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
57 lines (57 loc) · 1.69 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
{
"private": true,
"name": "ampreact",
"version": "4.0.0",
"description": "⚡⚛ AMP HTML + React — The most trendy website boilerplate possible.",
"main": "",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .ts --ext .tsx --ext .js .",
"format": "prettier --write '**/*.js' '**/*.jsx' '**/*.ts' '**/*.tsx' '**/*.md'",
"typecheck": "tsc -p ./tsconfig.json --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfrankland/ampreact.git"
},
"keywords": [
"amp",
"react",
"trendy"
],
"author": "Dylan Frankland <[email protected]> (http://dylan.frankland.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dfrankland/ampreact/issues"
},
"homepage": "https://github.com/dfrankland/ampreact#readme",
"devDependencies": {
"@types/node": "^12.0.10",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.16",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-eslint": "^10.0.2",
"babel-plugin-styled-components": "^1.10.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"prettier": "^1.18.2",
"typescript": "^3.5.2"
},
"dependencies": {
"next": "^8.1.1-canary.63",
"next-server": "^8.1.1-canary.63",
"react": "^16.8.6",
"react-amphtml": "^4.0.2",
"react-dom": "^16.8.6",
"styled-components": "^4.3.2"
}
}