forked from kolyaventuri/amplify-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
{
"name": "amplify-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "next start",
"test": "npm-run-all lint:* test:*",
"test:unit": "cross-env TS_NODE_PROJECT=tsconfig/tsconfig.ava.json ava",
"lint": "npm-run-all lint:*",
"lint:tsc": "tsc --noEmit",
"lint:lint": "xo --fix",
"local": "npm run dev",
"dev": "cross-env ENV=local next -p 4000",
"build:files": "next build",
"build:export": "next export",
"build": "npm-run-all build:*",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kolyaventuri/amplify-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kolyaventuri/amplify-template/issues"
},
"homepage": "https://github.com/kolyaventuri/amplify-template#readme",
"lint-staged": {
"**/*.ts?(x)": [
"xo --fix"
]
},
"dependencies": {
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@ava/babel": "^2.0.0",
"@testing-library/dom": "^8.19.0",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.21",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"autoprefixer": "^10.4.12",
"ava": "^3.15.0",
"browser-env": "^3.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.25.0",
"eslint-config-xo": "^0.42.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^0.53.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"esm": "^3.2.25",
"global-jsdom": "^8.6.0",
"husky": "^8.0.1",
"ignore-styles": "^5.0.1",
"jsdom": "^20.0.1",
"lint-staged": "^13.0.3",
"node-sass": "^7.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"proxyquire": "^2.1.3",
"sinon": "^14.0.1",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4",
"xo": "^0.52.4"
}
}