-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.35 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.35 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
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
{
"name": "micro",
"version": "1.0.0",
"description": "Simple implementation of periodic table using REST",
"main": "server.ts",
"scripts": {
"build": "npm run clean:dist && npm run tsc && npm run lint && npm run spell:check",
"clean": "npm run clean:dist && npm run clean:features && npm run clean:reports",
"clean:dist": "rimraf ./dist/*",
"clean:features": "rimraf ./features/*.feature",
"clean:reports": "rimraf ./reports/*",
"cucumber": "npm run clean:dist && npm run clean:reports && npm run features && npm run tsc && .\\node_modules\\.bin\\cucumber-js ./features/**/*.feature && npm run report:push",
"debug": "npm run build && npm run watch-debug",
"dev": "npm run build && cls && nodemon ./dist/src/server.js",
"devts": "cls && npx ts-node-dev ./src/server.ts",
"diff": "hiptest-publisher -c hiptest-publisher.conf --show-actionwords-diff",
"e2e": "npm run clean && npm run cucumber",
"features": "npm run clean:features && hiptest-publisher -c hiptest-publisher.conf --only=features --test-run-id 374835",
"format": "prettier --write '{domains,features,hooks,loggers,reporters,step-definitions}/**/*.{ts,tsx,css,html}'",
"lint": "npm run tsc && eslint **/*.{js,ts,tsx} --quiet --fix",
"report:push": "hiptest-publisher -c hiptest-publisher.conf --global-failure-on-missing-reports --push-format=cucumber-json --push=./reports/e2e_report.json",
"serve": "npm install && npm run cucumber && npm run dev",
"spell:check": "cspell \"**/*.{csv,js,md,ts}\"",
"start": "npm run build && nodemon ./dist/src/server.js",
"test": "npm run cucumber && npm run report",
"tsc": "cls && tsc --p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/edusoftpro/micro.git"
},
"keywords": [
"REST",
"GQL"
],
"author": "ABala",
"license": "MIT",
"bugs": {
"url": "https://github.com/edusoftpro/micro/issues"
},
"homepage": "https://github.com/edusoftpro/micro#readme",
"dependencies": {
"apollo-server-express": "^3.11.1",
"axios": "^0.27.2",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-graphql": "^0.9.0",
"graphql": "^14.7.0",
"graphql-tag": "^2.12.6",
"mongoose": "^6.4.6",
"serve": "^14.2.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/register": "^7.8.6",
"@types/async": "^3.0.2",
"@types/body-parser": "^1.17.1",
"@types/chai": "^4.2.3",
"@types/cors": "^2.8.6",
"@types/cucumber": "^4.0.4",
"@types/errorhandler": "^0.0.32",
"@types/eslint": "^6.1.1",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.7.8",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"comment-json": "^3.0.2",
"cspell": "^4.0.53",
"cucumber": "^6.0.5",
"cucumber-html-reporter": "^5.1.0",
"cucumber-pretty": "^6.0.0",
"eslint": "^6.4.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"mpath": "^0.8.4",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"qs": "^6.9.7",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-node-dev": "^1.1.6",
"typescript": "^3.8.2"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}