This repository has been archived by the owner on Aug 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.49 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
{
"name": "@mika-f/monaka",
"version": "0.3.1",
"description": "A Web IDE using React",
"main": "dist/index.js",
"repository": "https://github.com/mika-f/Monaka",
"author": "Mikazuki <mikazuki_fuyuno@outlook.com>",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"private": false,
"scripts": {
"build": "rimraf ./dist && ttsc --project tsconfig.build.json && node bin/copy.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"is-invalid-path": "^1.0.2",
"monaco-editor": "^0.20.0",
"react": "^16.13.1",
"react-animate-height": "^2.0.20",
"react-contextmenu": "^2.13.0",
"react-dom": "^16.13.1",
"react-monaco-editor": "^0.35.0",
"react-transition-group": "^4.3.0",
"simplebar-react": "^2.1.0",
"styled-components": "^5.0.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/react-transition-group": "^4.2.4",
"@types/styled-components": "^5.0.1",
"@types/uuid": "^7.0.2",
"@types/vfile-message": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@zerollup/ts-transform-paths": "^1.7.15",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"fs-extra": "^9.0.0",
"monaco-editor-webpack-plugin": "^1.9.0",
"parcel": "^1.12.4",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-loader": "^6.2.2",
"ttypescript": "^1.5.10",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
},
"resolutions": {
"@types/react": "^16.9.25",
"path-browserify": "1.0.0"
}
}