-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·103 lines (103 loc) · 2.71 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
103
{
"name": "generator-xxproject",
"version": "1.1.6",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/SaiRS/generator-xxproject/tree/develop"
},
"main": "index.js",
"scripts": {
"test": "jest",
"build": "npm run clear && npm run build-ts && npm run copy",
"build-ts": "tsc --resolveJsonModule",
"clear": "ts-node scripts/clean.ts",
"copy": "ts-node scripts/copy.ts",
"test-generator": "npm run build && yo webapp test",
"eslint": "eslint src/**/*.{js,jsx,vue,ts,tsx}",
"jest": "jest --init"
},
"keywords": [
"yeoman",
"generator",
"typescript",
"faker",
"editorconfig",
"eslint",
"prettier",
"mongodb",
"jest",
"express"
],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/cosmiconfig": "^5.0.3",
"@types/faker": "^4.1.5",
"@types/fs-extra": "^5.1.0",
"@types/is": "0.0.21",
"@types/jest": "^24.0.0",
"@types/js-yaml": "^3.12.1",
"@types/jsonfile": "^5.0.0",
"@types/lodash": "^4.14.120",
"@types/node": "^12.0.0",
"@types/shelljs": "^0.8.1",
"@types/webpack": "^4.4.31",
"@types/yeoman-assert": "^3.1.1",
"@types/yeoman-generator": "^3.0.1",
"@types/yeoman-test": "^2.0.2",
"@types/yosay": "0.0.29",
"babel-eslint": "^10.0.1",
"babel-plugin-macros": "^2.5.1",
"cross-env": "^5.2.0",
"eslint": "^5.12.1",
"eslint-config-alloy": "^1.4.2",
"eslint-config-google": "^0.12.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-compat": "^2.6.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-typescript": "^0.14.0",
"is": "^3.3.0",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"nodemon": "^1.19.0",
"ora": "^3.0.0",
"prettier": "^1.16.0",
"shelljs": "^0.8.3",
"ts-jest": "^24.0.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"typescript-eslint-parser": "^22.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"yo": "^2.0.5"
},
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"babel-jest": "^24.8.0",
"babel-preset-react-app": "^8.0.0",
"cookie-parser": "^1.4.3",
"cosmiconfig": "^5.2.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"fs-extra": "^7.0.1",
"http-errors": "^1.7.1",
"is_js": "^0.9.0",
"jest": "^24.0.0",
"js-yaml": "^3.13.1",
"jsonfile": "^5.0.0",
"mongodb": "^3.1.13",
"mongoose": "^5.4.9",
"morgan": "^1.9.1",
"superagent": "^4.1.0",
"yeoman-assert": "^3.1.1",
"yeoman-generator": "^3.2.0",
"yeoman-test": "^1.9.1",
"yosay": "^2.0.2"
},
"files": [
"generators"
]
}