-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.58 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
{
"name": "@prisma-cms/uploader",
"description": "Uploader module for @prisma-cms",
"version": "2.1.2",
"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": "npm run lint && npm run types && npm run test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"preversion": "npm run test && npm run clean && npm run build",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run types"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"@apollo/client": "^3.2.5",
"@prisma-cms/component": "^2.0.6",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"material-ui": "1.0.0-beta.43",
"material-ui-icons": "^1.0.0-beta.17"
},
"devDependencies": {
"@next/bundle-analyzer": "^9.5.5",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-docs": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/react": "^6.0.28",
"@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/express": "^4.17.9",
"@types/http-proxy-middleware": "^0.19.3",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-jss": "8.6.1",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"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",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.3",
"jest-watch-typeahead": "^0.5.0",
"lint-staged": "^10.5.1",
"next": "^10.0.1",
"nodemon": "^3.1.7",
"npm": "^6.14.8",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-jss": "8.6.1",
"rimraf": "^3.0.2",
"styled-components": "^5.2.1",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"typescript-styled-plugin": "^0.15.0"
},
"resolutions": {},
"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"
},
"keywords": [
"prisma-cms",
"front",
"components"
],
"author": "Fi1osof",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/prisma-cms/uploader.git"
},
"bugs": {
"url": "https://github.com/prisma-cms/uploader/issues"
},
"homepage": "https://github.com/prisma-cms/uploader#readme"
}