-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 3.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@prisma-cms/component-boilerplate",
"description": "Component for prisma-cms",
"version": "0.0.0",
"private": false,
"main": "dist",
"scripts": {
"dev": "nodemon",
"start": "cross-env NODE_ENV=production node dev/server/dist/index.js",
"clean": "rimraf ./dist",
"build": "tsc -p tsconfig.build.json",
"build:server": "rimraf ./dev/server/dist && next build && tsc --project tsconfig.server.json",
"build:server:analyze": "ANALYZE=true yarn build:server",
"types": "tsc --pretty --noEmit -p tsconfig.types.json",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test:all": "yarn lint && yarn types && yarn test",
"storybook": "start-storybook -p 6006",
"cy:open": "cypress open",
"cy:run": "cypress run",
"build-storybook": "build-storybook",
"preversion": "yarn test && yarn clean && yarn build",
"postversion": "yarn run npm publish",
"postpublish": "git push origin --all; git push origin --tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run types"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {},
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.12.1",
"@next/bundle-analyzer": "^9.5.5",
"@storybook/addon-actions": "^6.4.0",
"@storybook/addon-docs": "^6.4.0",
"@storybook/addon-links": "^6.4.0",
"@storybook/react": "^6.4.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.1.10",
"@types/chai": "^4.2.14",
"@types/express": "^4.17.9",
"@types/http-proxy-middleware": "^0.19.3",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"cypress": "^9.5.3",
"cypress-graphql-mock-network": "^0.2.2",
"dotenv": "^8.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-deprecate": "^0.7.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.2.0",
"http-proxy-middleware": "^1.0.6",
"husky": "^4.3.0",
"immer": "^9.0.12",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.3",
"jest-watch-typeahead": "^0.5.0",
"lint-staged": "^10.5.1",
"moment": "^2.29.1",
"moment-locales-webpack-plugin": "^1.2.0",
"next": "^12.0.4",
"nodemon": "^2.0.13",
"npm": "^6.14.8",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.5.2",
"typescript-styled-plugin": "^0.15.0"
},
"resolutions": {
"immer": "^9.0.12"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prisma-cms/component-boilerplate.git"
},
"keywords": [
"prisma-cms",
"front",
"components"
],
"author": "Fi1osof",
"license": "ISC",
"bugs": {
"url": "https://github.com/prisma-cms/component-boilerplate/issues"
},
"homepage": "https://github.com/prisma-cms/component-boilerplate#readme"
}