-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 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
{
"name": "@warhol/comn",
"version": "1.14.2",
"description": "Commons Library of React Components",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/wearewarhol/comn.git",
"author": "Hans Christian Reinl <info@drublic.de>",
"license": "MIT",
"scripts": {
"prepare": "yarn build",
"lint": "eslint ./src/ --ext ts,tsx",
"copy:css": "copyfiles -u 1 './src/**/*.{css,svg,png}' build",
"copy:json": "copyfiles -u 1 './src/**/*.json' build",
"ts:build": "tsc -p tsconfig.json",
"start:dev": "yarn ts:build --watch",
"build": "yarn lint && yarn copy:css && yarn copy:json && yarn ts:build"
},
"peerDependencies": {
"@material-ui/styles": "^4.11.4",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@material-ui/styles": "^4.11.4",
"@warhol/tsconfig": "2.0.0",
"chroma-js": "^2.1.2",
"classnames": "^2.3.1",
"lottie-web": "^5.7.11",
"prismjs": "^1.24.0",
"react-lazyload": "^3.2.0",
"react-router-dom": "^5.2.0",
"react-simple-code-editor": "^0.11.0",
"react-transition-group": "^4.4.2",
"showdown": "^1.9.1",
"walls": "^2.3.0"
},
"devDependencies": {
"@types/chroma-js": "^2.1.3",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.23",
"@types/prismjs": "^1.16.5",
"@types/react-lazyload": "^3.1.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-transition-group": "^4.4.1",
"@types/showdown": "^1.9.3",
"copyfiles": "^2.4.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.30.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"jest-canvas-mock": "^2.3.1",
"jest-enzyme": "^7.1.2",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"jest": {
"watchPathIgnorePatterns": [
"node_modules",
"build"
]
}
}