-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "urna-eletronica",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest --runInBand"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-react": "^7.28.0",
"next": "12.1.4",
"react": "18.0.0",
"react-dom": "18.0.0",
"reflect-metadata": "^0.1.13",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@storybook/addon-actions": "^6.4.20",
"@storybook/addon-essentials": "^6.4.20",
"@storybook/addon-interactions": "^6.4.20",
"@storybook/addon-links": "^6.4.20",
"@storybook/react": "^6.4.20",
"@storybook/testing-library": "^0.0.9",
"@types/jest": "^27.4.1",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/styled-components": "^5.1.24",
"babel-loader": "^8.2.4",
"eslint": "^8.13.0",
"eslint-config-next": "12.1.4",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-storybook": "^0.5.7",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.6.3"
},
"_moduleAliases": {
"@components/*": "components/*",
"@pages/*": "pages/*",
"@styles/*": "styles/*",
"@types": "types/index",
"@contexts/*": "contexts/*",
"@model/*": "model/*"
}
}