forked from farrah-deriv/trolls-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "trolls-api",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:src-coverage": "jest --coverage --collectCoverageFrom=src/**/*.{js,jsx,ts,tsx}"
},
"dependencies": {
"@deriv/deriv-api": "^1.0.8",
"formik": "^2.2.9",
"next": "12.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"yup": "^0.32.11",
"react-responsive-carousel": "^3.2.22"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/node": "16.11.7",
"@types/node-sass": "^4.11.2",
"@types/prismjs": "^1.16.6",
"@types/react": "17.0.34",
"babel-jest": "^27.3.1",
"eslint": "7.32.0",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-sonar-reporter": "^2.0.0",
"prismjs": "^1.25.0",
"react-test-renderer": "^17.0.2",
"sass": "^1.43.4",
"typescript": "4.4.4"
}
}