-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.08 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
{
"scripts": {
"edgio:dev": "edgio dev",
"edgio:build": "edgio build",
"edgio:deploy": "edgio deploy",
"edgio:run": "edgio run -p",
"dev": "next dev",
"update-tech-options": "node ./update-tech-options/update-list.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:eslint": "eslint **/*.{ts,tsx,js}",
"lint:prettier": "prettier --check .",
"prepare": "husky install",
"format": "yarn prettier --loglevel warn --write .",
"test:prepare": "cp -r ./tests/assets/templates ./ && cp -t ./ ./tests/assets/techOptions.json ./tests/assets/techOptionsFiles.json ./tests/assets/techOptionsPrep.json",
"test": "yarn test:prepare && jest --coverage",
"clone-templates": "git clone https://github.com/toptal/gitignore ./toptal.gitignoreTemplates && cp -r ./toptal.gitignoreTemplates/templates ./templates && rm -rf ./toptal.gitignoreTemplates"
},
"name": "gitignore",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.17.0",
"npm": "please-use-yarn"
},
"dependencies": {
"clsx": "2.0.0",
"geist": "1.2.1",
"next": "14.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.12.0",
"react-select": "5.8.0"
},
"devDependencies": {
"@edgio/cli": "7.13.6",
"@edgio/core": "7.13.6",
"@edgio/devtools": "7.13.6",
"@edgio/next": "7.13.6",
"@edgio/prefetch": "7.13.6",
"@edgio/react": "7.13.6",
"@types/jest": "29.5.11",
"@types/node": "20",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"autoprefixer": "10.4.16",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"postcss": "8.4.32",
"postcss-simple-vars": "7.0.1",
"prettier": "3.2.5",
"tailwindcss": "3.4.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,yml,css,json,mjs}": [
"prettier --loglevel warn --write"
],
"*.md": [
"prettier --loglevel warn --write"
]
}
}