-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 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
{
"name": "order-book",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"classnames": "^2.3.1",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"rxjs": "^7.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/user-event": "13.2.1",
"@types/react": "17.0.27",
"babel-jest": "27.0.6",
"cypress": "8.2.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-plugin-testing-library": "4.11.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.6",
"start-server-and-test": "1.13.1",
"react-test-renderer": "17.0.2",
"typescript": "4.4.3"
}
}