-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 KB
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": "react-ff",
"version": "1.0.10",
"description": "CLI tool for creating feature folders in React",
"repository": {
"type": "git",
"url": "https://github.com/ragingyngvarr/react-ff.git"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run lint && npm run test && npm run build",
"build": "tsc -p .",
"check": "sudo npm i -g && react-ff",
"test": "jest --collectCoverage",
"lint": "eslint ./src/**/*.ts",
"fix": "prettier --write ./src/*.ts ./src/**/*.ts"
},
"main": "./lib/index.js",
"bin": {
"react-ff": "./lib/index.js"
},
"keywords": [
"react",
"feature-folders"
],
"jest": {
"coverageDirectory": "./coverage/"
},
"author": "Ihar Krasiuk <yngvarr.bel@gmail.com>",
"types": "./lib/index.d.ts",
"license": "ISC",
"dependencies": {
"commander": "^4.1.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"jest-mock": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}