-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.14 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
{
"name": "spiritualist_placeholder_service",
"version": "1.0.0",
"description": "replace lorem ipsums with spiritualist text",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watchAll"
},
"author": "Painatalman",
"license": "ISC",
"dependencies": {
"@react-spring/web": "^9.2.3",
"axios": "^0.21.1",
"next": "10.2.3",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "17.0.11",
"autoprefixer": "^10.2.6",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.4",
"cypress": "^6.9.1",
"cypress-axe": "^0.12.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^10.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.6.0",
"faker": "^5.5.3",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"lint-staged": "^11.0.0",
"msw": "^0.29.0",
"node-mocks-http": "^1.10.1",
"postcss": "^8.3.2",
"prettier-plugin-sort-json": "^0.0.2",
"tailwindcss": "^2.0.4",
"ts-jest": "^26.5.0",
"typescript": "4.3.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,mdx}": [
"prettier --write",
"eslint --cache --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}