-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "hoeks",
"version": "0.0.0",
"main": "index.js",
"repository": "git@github.com:onursagir/hoeks",
"author": "Mehmet Onur Sagir <onuur.s@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@cypress/snapshot": "^2.1.7",
"@reach/router": "^1.3.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.20",
"@types/reach__router": "^1.3.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"cypress": "^6.3.0",
"jest": "^26.6.3",
"parcel": "^1.12.4",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"scripts": {
"test": "jest",
"start-e2e": "parcel e2e-env/index.html",
"cypress": "cypress open -C .cypress/config.json"
}
}