-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.67 KB
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
{
"name": "template-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf .next && rimraf out",
"dev": "next",
"build": "next build",
"start": "next start",
"export": "yarn clean && yarn build && next export",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standardx --verbose '**/*.ts' '**/*.tsx' | snazzy",
"fix": "yarn format && yarn lint",
"format": "prettier --write 'src/**/*.ts' 'src/**/*.tsx' > /dev/null"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"next": "^9.3.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.3"
},
"devDependencies": {
"@types/node": "^12.12.7",
"@types/react": "^16.9.11",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jest-dom": "^2.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-testcafe": "^0.2.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.0",
"snazzy": "^8.0.0",
"standardx": "^5.0.0",
"typescript": "^3.7.2"
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"afterEach",
"$Keys",
"Class",
"ClientRect",
"jest",
"fixture",
"$Shape",
"MouseEvent",
"FormData"
],
"ignore": [
"_next/**/*.js",
"out/**/*.js"
]
}
}