-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "autojs-scripts",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run watch",
"watch": "npm run dev -- --watch",
"dev": "rimraf dist && webpack --config tools/webpack/webpack.dev.js",
"build": "rimraf dist && webpack --config tools/webpack/webpack.prod.js",
"lint": "eslint --format eslint-formatter-friendly \"projects/**/*.ts\"",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demoshang/autojs-scripts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/demoshang/autojs-scripts/issues"
},
"homepage": "https://github.com/demoshang/autojs-scripts#readme",
"devDependencies": {
"@s4p/eslint-config": "^5.1.1",
"@types/bluebird": "^3.5.36",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^8.1.0",
"eslint-config-alloy": "^4.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.1.0",
"glob": "^7.2.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.4.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0",
"webpack-sources": "^3.2.1"
},
"dependencies": {
"bluebird": "^3.7.2"
}
}