-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.72 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
{
"name": "NAI_magic_wand",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist && webpack --env=production",
"make-package": "rm -rf ./dist && webpack --env=production && zip -r package.zip ./dist",
"dev": "webpack-dev-server",
"lint": "eslint src -c ./.eslintrc --ext js,ts,tsx,vue; exit 0",
"lint-fix": "eslint --fix src -c ./.eslintrc --ext js,ts,tsx,vue; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hassoubeat/NAI_magic_wand.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hassoubeat/NAI_magic_wand/issues"
},
"homepage": "https://github.com/hassoubeat/NAI_magic_wand#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.6.0",
"eslint-plugin-vue-scoped-css": "^2.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"jquery": "^3.6.1",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"node-sass": "^7.0.3",
"node-sass-package-importer": "^5.3.2",
"sass": "^1.55.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"template-ejs-loader": "^0.9.4",
"vue": "^3.2.40",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.7.10",
"vuex": "^4.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-stream": "^7.0.0"
}
}