-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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
76
77
78
79
{
"name": "saifbechan.github.io",
"version": "0.1.1",
"private": false,
"homepage": "https://saifbechan.me",
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"now-build": "next build",
"export": "next export",
"start": "next start",
"start:test": "next start -p 3030",
"test": "jest",
"test:watch": "jest --watch",
"tsc": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"style": "stylelint **/*.scss",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:test": "start-server-and-test start:test 3030 cy:run",
"tsc:cypress": "tsc --project cypress/tsconfig.json --pretty --noEmit",
"clean": "rimraf out .next",
"prepare": "husky install"
},
"dependencies": {
"next": "^12.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@types/p5": "^1.4.2",
"@types/react": "^18.0.18",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"cypress": "^10.7.0",
"eslint": "8.23.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.1",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.0.1",
"jest-watch-typeahead": "^2.1.1",
"lint-staged": "^13.0.3",
"next-pwa": "^5.6.0",
"next-seo": "^5.5.0",
"p5": "^1.4.2",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"sass": "^1.54.8",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.11.0",
"stylelint-config-standard": "^28.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"engines": {
"node": "16.x"
}
}