-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
{
"name": "create-rx-app",
"version": "0.6.23",
"description": "ReactXP Project Generator",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Oleksandr Tarasiuk",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/a-tarasyuk/create-rx-app.git"
},
"bugs": {
"url": "https://github.com/a-tarasyuk/create-rx-app/issues"
},
"keywords": [
"reactxp",
"react",
"react-native",
"react-native-windows",
"reactxp project generator"
],
"scripts": {
"prepare": "npm run build",
"format": "prettier --write \"./**/*.{ts,md}\"",
"format:check": "prettier --list-different \"./**/*.{ts,md}\"",
"build": "tsc -p tsconfig.json",
"lint": "eslint --config .eslintrc --ext .ts src test",
"test": "jest -c jest.config.js"
},
"dependencies": {
"@types/fs-extra": "9.0.7",
"@types/jest": "26.0.20",
"@types/lodash": "4.14.168",
"@types/minimist": "1.2.1",
"@types/mustache": "4.1.1",
"@types/node": "14.14.31",
"@types/username": "3.0.0",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"chalk": "4.1.0",
"commander": "7.1.0",
"enquirer": "2.3.6",
"eslint": "7.21.0",
"eslint-plugin-jest": "24.1.3",
"fs-extra": "^10.0.0",
"husky": "5.1.2",
"jest": "26.6.3",
"lodash": "4.17.21",
"mustache": "4.1.0",
"prettier": "2.2.1",
"ts-jest": "26.5.2",
"typescript": "4.2.2",
"username": "5.1.0",
"uuid": "8.3.2"
},
"bin": {
"create-rx-app": "bin/create-rx-app.js"
},
"engines": {
"node": ">=8.11.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format:check && npm run build"
}
}
}