-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "next-fe-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"lint": "eslint . --ext ts --ext tsx --ext js",
"lint:fix": "npm run lint --fix",
"check-types": "tsc --noEmit",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"test-all": "npm run lint && npm run format && npm run build",
"prepare": "husky install",
"test": "jest",
"test:ci": "jest --ci",
"cy:open": "cypress open",
"cy:run": "cypress run",
"remotion": "npx remotion studio ./src/remotion/index.ts",
"render": "npx remotion render ./src/remotion/index.ts"
},
"dependencies": {
"@remotion/cli": "^4.0.57",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@typescript-eslint/parser": "^6.2.0",
"axios": "^1.5.0",
"eslint-config-next": "13.4.9",
"nanoid": "^5.0.2",
"next": "13.4.9",
"react": "18.2.0",
"react-dom": "18.2.0",
"remotion": "^4.0.57",
"sass": "^1.63.6",
"typescript": "5.1.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "^29.5.4",
"@types/react": "18.2.21",
"@types/testing-library__jest-dom": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"cypress": "^13.1.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.0",
"jest": "29.6.4",
"jest-environment-jsdom": "29.6.4",
"prettier": "^3.0.0"
}
}