-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.63 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
81
82
83
84
85
86
{
"name": "star-plus",
"version": "1.0.0",
"description": "star plus website clone",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:dev": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint \"./**/*.css\"",
"lint:css:fix": "stylelint \"./**/*.css\" --fix",
"format": "prettier --write .",
"test": "jest --watch",
"test:ci": "npm run lint && npm run test",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juancho11gm/start-plus.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/juancho11gm/start-plus/issues"
},
"homepage": "https://github.com/juancho11gm/start-plus#readme",
"devDependencies": {
"@babel/core": "^7.19.6",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "18.7.18",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.13.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.6.6",
"husky": "^7.0.0",
"jest": "^29.3.0",
"jest-environment-jsdom": "^29.3.0",
"lint-staged": "^12.3.8",
"node-sass": "^7.0.3",
"prettier": "^2.6.2",
"styled-jsx-plugin-sass": "^1.0.0",
"stylelint": "^14.7.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"ts-jest": "^29.0.3",
"typescript": "4.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableSubjectLowerCase": true
}
},
"dependencies": {
"firebase": "^9.13.0",
"gsap": "^3.11.2",
"next": "^13.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.6"
}
}