-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.28 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
{
"name": "nonorepo",
"version": "0.3.3",
"description": "Nono is here to help me with monorepo stuff",
"keywords": [],
"homepage": "https://github.com/etienne-dldc/nonorepo#readme",
"bugs": {
"url": "https://github.com/etienne-dldc/nonorepo/issues"
},
"repository": "git+https://github.com/etienne-dldc/nonorepo.git",
"license": "MIT",
"author": "Etienne Dldc",
"files": [
"dist",
"bin"
],
"main": "dist/index.js",
"module": "dist/nonorepo.esm.js",
"typings": "dist/index.d.ts",
"bin": {
"nono": "./bin/nonorepo.js"
},
"scripts": {
"build": "tsdx build --target node",
"pub": "yarn build && np",
"start": "tsdx watch --target node",
"lint": "tsdx lint src test",
"test": "tsdx test"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"settings": {
"react": {
"version": "999.999.999"
}
}
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-parameters": "^7.12.1",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@manypkg/get-packages": "^1.1.1",
"@types/nodemon": "^1.19.0",
"babel-loader": "^8.2.2",
"chalk": "^4.1.0",
"cross-spawn": "^7.0.3",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^9.1.0",
"globby": "^11.0.2",
"micromatch": "^4.0.2",
"nodemon": "^2.0.7",
"webpack": "^5.18.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/friendly-errors-webpack-plugin": "^0.1.2",
"@types/fs-extra": "^9.0.6",
"@types/jest": "^26.0.20",
"@types/micromatch": "^4.0.1",
"@types/node": "^14.14.22",
"@types/webpack": "^4.41.26",
"husky": "^4.3.8",
"np": "^7.2.0",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
}
}