-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "shape-toy-prompt",
"version": "1.0.0",
"description": "Lightning Paradise was the local hangout joint where the group usually ended up spending the night.",
"main": "index.js",
"scripts": {
"start": "webpack serve --port 3000",
"build": "NODE_ENV=production webpack",
"test": "jest",
"lint": "eslint . --ext .tsx,.js,.ts",
"prepare": "husky install",
"cy:open": "cypress open --env type=actual --browser chrome",
"cy:run": "cypress run --env type=actual --browser chrome",
"cy": "start-server-and-test start http://localhost:3000 cy:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dethereum/shape-toy-prompt.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dethereum/shape-toy-prompt/issues"
},
"homepage": "https://github.com/dethereum/shape-toy-prompt#readme",
"lint-staged": {
"**/*.{js,tsx}": [
"npm run lint -- --fix"
]
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"nanoid": "^3.3.3",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"css-loader": "^6.7.1",
"cypress": "^9.6.0",
"cypress-real-events": "^1.7.0",
"cypress-visual-regression": "^1.7.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.3.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"lint-staged": "^12.4.1",
"mini-css-extract-plugin": "^2.6.0",
"prettier": "^2.6.2",
"start-server-and-test": "^1.14.0",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.9",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}