-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.65 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
{
"name": "dool",
"version": "5.0.2",
"description": "d-band tool & dev tool",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"dool": "bin/dool"
},
"scripts": {
"lint": "eslint src test/*.test.ts",
"build": "rimraf lib && tsc -p tsconfig.prod.json",
"prepare": "npm run build",
"test": "jest --coverage -i",
"coveralls": "coveralls < coverage/lcov.info"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"babel-preset-proposal": "^1.1.2",
"css-loader": "^5.0.0",
"cssnano": "^5.0.0",
"dool-init": "^2.0.5",
"etpl-loader": "^1.0.1",
"file-loader": "^6.1.1",
"fs-extra": "^9.0.11",
"glob": "^7.1.6",
"ip": "^1.1.5",
"is-plain-object": "^5.0.0",
"json-loader": "^0.5.7",
"json5": "^2.1.3",
"less": "^4.1.1",
"less-loader": "^8.0.0",
"mini-css-extract-plugin": "^1.0.0",
"postcss": "^8.1.1",
"postcss-loader": "^5.2.0",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.32.0",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^3.1.1",
"worker-farm": "^1.7.0",
"yargs": "^16.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/dool.git"
},
"keywords": [
"d-band",
"dev",
"tool",
"dool",
"build",
"server",
"frontend"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/dool/issues"
},
"homepage": "https://github.com/d-band/dool#readme",
"engines": {
"node": ">= 8"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.15",
"@types/fs-extra": "^9.0.8",
"@types/ip": "^1.1.0",
"@types/jest": "^26.0.21",
"@types/mini-css-extract-plugin": "^1.2.2",
"@types/object-assign": "^4.0.30",
"@types/supertest": "^2.0.11",
"@types/webpack-dev-server": "^3.11.2",
"@types/webpack-manifest-plugin": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.6.3",
"object-assign": "^4.1.1",
"postcss-preset-env": "^6.7.0",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}