-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.35 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
{
"name": "shoperintegration",
"version": "1.6.4",
"description": "Service to integration shoper online shop with local data.",
"main": "./src/index.js",
"repository": "[email protected]:ambus/shoperintegration.git",
"author": "Szymon Standarski",
"license": "MIT",
"private": false,
"target": "node",
"keywords": [
"shoper",
"intergration",
"api",
"service"
],
"scripts": {
"test-coverage": "NODE_ENV=development jest --coverage",
"test": "NODE_ENV=development jest --verbose",
"test:console": "NODE_ENV=development jest --verbose false",
"test:watch": "NODE_ENV=development jest --watch",
"test:watch:non-console": "NODE_ENV=development jest --watch --verbose false",
"build": "webpack",
"build-type-script": "tsc",
"start": "nodemon ./src/index.js",
"start:live": "NODE_ENV=development nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts",
"start:dist": "NODE_ENV=production nodemon ./dist/server.js",
"release": "standard-version",
"commit": "git-fcm",
"karma": "karma start"
},
"dependencies": {
"chokidar": "^2.1.5",
"csv-parse": "^4.3.4",
"git-fcm": "^0.1.6",
"log4js": "^4.0.2",
"node-fetch": "^2.3.0",
"nodemailer": "^6.1.1",
"nodemailer-smtp-transport": "^2.7.4",
"path": "^0.12.7",
"rxjs": "^6.4.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@types/gulp": "^4.0.6",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.4",
"@types/node-fetch": "^2.1.7",
"@types/nodemailer": "^4.6.8",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"del": "^4.1.1",
"eslint": "^8.2.0",
"gulp": "^4.0.2",
"gulp-sftp-up4": "^0.1.8",
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"nodemon": "^1.18.10",
"standard-version": "^6.0.1",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"typescript": "^3.3.4000",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"verbose": true,
"testRegex": "src/.*.(test|spec).(jsx?|tsx?)$",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"node"
]
}
}