forked from ls1intum/Apollon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.09 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 4.09 KB
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
{
"name": "@ls1intum/apollon",
"version": "2.8.4",
"description": "A UML diagram editor.",
"keywords": [],
"homepage": "https://github.com/ls1intum/apollon#readme",
"bugs": "https://github.com/ls1intum/apollon/issues",
"license": "MIT",
"author": {
"name": "Stephan Krusche",
"email": "krusche@in.tum.de",
"url": "https://www1.in.tum.de/krusche"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "github:ls1intum/apollon",
"sideEffects": false,
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"start": "webpack serve --config ./webpack/webpack.dev.js",
"build": "rm -rf dist && webpack --config ./webpack/webpack.prod.js",
"copyAPIToDoc": "cp lib/apollon-editor.d.ts lib/typings.d.ts docs/source/user/api",
"lint": "yarn lint:ts && yarn lint:css",
"lint:ts": "tslint --force -p tsconfig.json -c tslint.json -t stylish",
"lint:css": "stylelint 'src/**/*.ts'",
"prepare": "rm -rf lib && tsc -p .",
"prettier:check": "prettier --check 'src/{main,tests}/**/*.{json,ts,tsx,js,jsx,css,scss,html}'",
"prettier:write": "prettier --write 'src/{main,tests}/**/*.{json,ts,tsx,js,jsx,css,scss,html}'",
"test": "jest -w=4",
"test:coverage": "jest --collectCoverage -w=4",
"test:watch": "jest --watch -w=4",
"update": "yarn upgrade-interactive --latest",
"publish:patch": "yarn prepare && yarn test && yarn copyAPIToDoc && npm version patch && npm publish",
"publish:minor": "yarn prepare && yarn test && yarn copyAPIToDoc && npm version minor && npm publish",
"publish:major": "yarn prepare && yarn test && yarn copyAPIToDoc && npm version major && npm publish",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"update-snapshots": "jest --updateSnapshot"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "stylelint --fix",
"*.{ts,tsx,js,css,md}": "prettier --write"
},
"dependencies": {
"is-mobile": "3.0.0",
"pepjs": "0.5.3",
"react": "17.0.2",
"react-color": "2.19.3",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"react-tooltip": "4.2.21",
"redux": "4.1.2",
"redux-saga": "1.1.3",
"redux-thunk": "2.4.0",
"styled-components": "5.3.3",
"tslib": "2.3.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-essentials": "6.3.12",
"@storybook/addon-links": "6.3.12",
"@storybook/react": "6.3.12",
"@testing-library/jest-dom": "5.15.0",
"@testing-library/react": "12.1.0",
"@types/chai": "4.2.22",
"@types/jest": "27.0.3",
"@types/react": "17.0.36",
"@types/react-color": "3.0.6",
"@types/react-dom": "17.0.11",
"@types/react-redux": "7.1.20",
"@types/redux-mock-store": "1.0.3",
"@types/styled-components": "5.1.15",
"@types/uuid": "8.3.3",
"babel-loader": "8.2.3",
"babel-plugin-const-enum": "1.2.0",
"chai": "4.3.4",
"circular-dependency-plugin": "5.2.2",
"copy-webpack-plugin": "10.0.0",
"css-loader": "6.5.1",
"ejs-loader": "0.5.0",
"fork-ts-checker-notifier-webpack-plugin": "4.0.0",
"fork-ts-checker-webpack-plugin": "6.4.1",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"jest": "27.3.1",
"jest-styled-components": "7.0.8",
"lint-staged": "12.1.2",
"pinst": "2.1.6",
"prettier": "2.4.1",
"redux-mock-store": "1.5.4",
"style-loader": "3.3.1",
"stylelint": "13.13.1",
"stylelint-config-recommended": "5.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-custom-processor-loader": "0.6.0",
"stylelint-processor-styled-components": "1.10.0",
"ts-jest": "27.0.7",
"ts-loader": "9.2.6",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-loader": "3.5.4",
"tslint-react": "5.0.0",
"typescript": "4.5.2",
"webpack": "5.64.2",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.5.0",
"webpack-merge": "5.8.0",
"yarn": "1.22.17"
}
}