-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.63 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.63 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
{
"name": "@syntaxica/editor",
"version": "1.0.0",
"license": "MIT",
"main": "src/index.js",
"homepage": "https://damianw27.github.io/syntaxica/",
"scripts": {
"build:dev": "webpack --mode=development --config=./webpack.config.js --progress",
"build:prod": "webpack --mode=production --node-env=production --config=./webpack.config.js",
"serve": "webpack serve --config=./webpack.config.js",
"deploy": "gh-pages -d build",
"test": "jest --no-cache --coverage"
},
"dependencies": {
"@egjs/hammerjs": "^2.0.0",
"@syntaxica/lib": "^0.0.13",
"base64-js": "^1.5.1",
"component-emitter": "^1.3.0",
"fuse.js": "^6.6.2",
"html-react-parser": "^3.0.16",
"keycharm": "^0.4.0",
"pako": "^2.1.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-simple-code-editor": "^0.13.1",
"text-encoding-utf-8": "^1.0.2",
"timsort": "^0.3.0",
"uuid": "^9.0.0",
"vis-data": "^7.0.0",
"vis-network": "9.1.6",
"vis-util": "^5.0.1"
},
"devDependencies": {
"@babel/runtime": "^7.20.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/base64-js": "^1.3.0",
"@types/enzyme": "^3.10.13",
"@types/jest": "^29.5.1",
"@types/pako": "^2.0.0",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@types/text-encoding-utf-8": "^1.0.2",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-webpack-plugin": "^4.0.1",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "^2.8.8",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.7",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"workbox-webpack-plugin": "^6.5.4"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}