-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.83 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "awps",
"version": "1.3.0",
"description": "awps",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/awps"
},
"bugs": {
"url": "https://github.com/awps"
},
"homepage": "https://github.com/awps",
"dependencies": {
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-go": "^6.0.0",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-less": "^6.0.2",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.5",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/lang-sql": "^6.6.3",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.1",
"@codemirror/state": "^6.3.1",
"@codemirror/view": "^6.22.0",
"@pgrabovets/json-view": "^2.7.1",
"@replit/codemirror-lang-csharp": "^6.2.0",
"babel-plugin-prismjs": "^2.1.0",
"codemirror": "^6.0.1",
"js-beautify": "^1.14.11",
"prism-js-fold": "^1.0.1",
"prism-json-fold": "^1.0.1",
"prismjs": "^1.28.0",
"react-json-view": "^1.21.3",
"terser-webpack-plugin": "^5.3.9",
"thememirror": "^2.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.3",
"browser-sync": "^2.27.7",
"browser-sync-webpack-plugin": "^2.3.0",
"css-loader": "^6.6.0",
"cssnano": "^5.1.0",
"glob": "^7.2.0",
"laravel-mix": "^6.0.43",
"postcss": "^8.4",
"postcss-custom-properties": "^12.1.4",
"postcss-loader": "^6.2.1",
"prettier": "3.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"replace-in-file": "^6.3.2",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"scripts": {
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"production": "mix --production",
"eslint": "npx eslint js/**/**.tsx",
"jslint": "npx eslint js/**/**.tsx",
"phplint": "./vendor/bin/phpcs"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 ie version"
]
},
"author": "Andrei Surdu",
"license": "ISC",
"tagy": {
"auto-release": false,
"replace": [
{
"files": "src/manifest.json",
"from": "\"version\": \"\\d+\\.\\d+\\.\\d+\"",
"to": "\"version\": \"__VERSION__\"",
"flags": "g"
}
]
}
}