-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 949 Bytes
/
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
{
"name": "day-trading-tools",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.3",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@stripe/react-stripe-js": "^1.4.1",
"@stripe/stripe-js": "^1.17.1",
"@testing-library/react": "^12.0.0",
"axios": "^0.21.1",
"eslint-plugin-jest": "^24.4.0",
"framer-motion": "^4.1.17",
"next": "10.2.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react-hooks": "^7.0.1",
"babel-plugin-styled-components": "^1.13.2",
"jest": "^27.0.6"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom"
}
}