-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
79 lines (79 loc) · 2.6 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"test": "jest",
"test:watch": "jest --watch",
"precommit": "lint-staged",
"prettier": "prettier",
"prettier-write": "npm run prettier -- --single-quote --trailing-comma es5 --write --print-width 120 --tab-width 4",
"prettier-project": "npm run prettier-write -- resources/**/*.{js,scss,ts}"
},
"dependencies": {
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.10.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@replit/codemirror-vim": "^6.2.1",
"axios": "^1.7.2",
"cli-spinners": "^3.0.0",
"cm6-theme-material-dark": "^0.2.0",
"codemirror": "^6.0.1",
"jquery-mousewheel": "^3.1.13",
"jquery.terminal": "^2.42.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@types/core-js": "^2.5.8",
"@types/jest": "^29.5.12",
"@types/jquery": "^3.5.30",
"@types/jquery-mousewheel": "^3.1.12",
"@types/node": "^20.14.7",
"browser-sync": "^2.27.11",
"browser-sync-webpack-plugin": "^2.3.0",
"core-js": "^3.37.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"json-loader": "^0.5.7",
"laravel-mix": "^6.0.49",
"lodash": "^4.17.21",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"ts-jest": "^29.1.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.2"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}