-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.82 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
{
"name": "veek",
"version": "0.0.0",
"description": "veek",
"scripts": {
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"lint": "next lint",
"lint:css": "stylelint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:all": "yarn run lint && yarn run lint:css",
"test": "jest --updateSnapshot",
"test:coverage": "jest --updateSnapshot --coverage",
"test:watch": "jest --updateSnapshot --watch",
"clean": "rimraf .next",
"prepush": "yarn run test",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateussmohamed/veek.git"
},
"author": "Mateus Santana",
"license": "ISC",
"bugs": {
"url": "https://github.com/mateussmohamed/veek/issues"
},
"homepage": "https://github.com/mateussmohamed/veek#readme",
"dependencies": {
"next": "^12.2.2",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-styled-flexboxgrid": "^3.2.1",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"eslint": "^8.19.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"jest-styled-components": "^7.0.8",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^4.7.4"
}
}