-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
package.json
File metadata and controls
56 lines (56 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
{
"name": "codepoint-front",
"description": "Codepoint's front-end application",
"version": "0.1.0",
"license": "MIT",
"repository": "github:codepointtku/codepoint-front",
"scripts": {
"start": "next dev",
"build": "next build",
"dev": "next start",
"lint": "next lint",
"test": "jest",
"coverage": "jest --coverage",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless"
},
"dependencies": {
"deepmerge": "^4.2.2",
"@apollo/client": "^3.5.6",
"graphql": "^16.2.0",
"i18next": "^21.6.5",
"i18next-http-backend": "^1.3.1",
"lodash": "^4.17.21",
"next": "^12.0.7",
"next-i18next": "^10.1.0",
"next-pwa": "^5.4.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.47.0",
"sharp": "^0.29.3"
},
"devDependencies": {
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@codepointtku/eslint-config-jsx-eslint": "^1.0.6",
"@codepointtku/jsx-prettier": "^1.0.5",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/node": "^17.0.8",
"@types/react": "17.0.38",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-jest": "^27.4.6",
"cypress": "^9.2.0",
"enzyme": "^3.11.0",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-cypress": "^2.12.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"start-server-and-test": "^1.14.0",
"typescript": "4.5.4"
}
}