-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.84 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
{
"name": "moysklad-1c-export-stack",
"private": true,
"version": "3.1.0",
"description": "Сервис выгрузки дополнительной информации из МойСклад для файла импорта в 1С",
"scripts": {
"env:example": "npx sync-dotenv@2.6.2",
"cleanup": "rm -rf build/",
"lint": "eslint . --fix",
"compile:dev": "tsc",
"compile": "tsc --build tsconfig.prod.json",
"build:layer": "touch .npmrc && LAYER_DIR=layer/dependencies && rm -rf $LAYER_DIR && mkdir -p \"${LAYER_DIR}/nodejs\" && cp package.json \"${LAYER_DIR}/nodejs\" && cp .npmrc \"${LAYER_DIR}/nodejs\" && npm install --production --prefix \"${LAYER_DIR}/nodejs\" && rm \"${LAYER_DIR}/nodejs/package.json\" && rm \"${LAYER_DIR}/nodejs/package-lock.json\" && rm \"${LAYER_DIR}/nodejs/.npmrc\"",
"build:app:dev": "npm run lint && npm run compile:dev",
"build:app": "npm run cleanup && npm run lint && npm run compile",
"build:stack": "npm run cdk:synth",
"build": "npm run build:app && npm run build:layer && npm run build:stack",
"test:app": "npm run build:app && NODE_OPTIONS=--enable-source-maps node -r dotenv/config ./build/test",
"test": "npm run build && NODE_OPTIONS=--enable-source-maps node -r dotenv/config ./build/test",
"release:stage": "npm run test:app && npm run build:stack && git push origin stage",
"cdk:synth": "npx cdk synth",
"deploy": "npx cdk deploy --all --profile $PROFILE",
"version": "npm run env:example && auto-changelog -p && git add CHANGELOG.md .env.example",
"release": "np"
},
"engines": {
"node": ">=14"
},
"prettier": {
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "none",
"arrowParens": "avoid"
},
"np": {
"yarn": false
},
"author": {
"name": "Vitaliy V. Makeev",
"email": "w.makeev@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.93",
"@types/node": "^14.18.12",
"@types/node-fetch": "^2.6.1",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@typescript-eslint/typescript-estree": "^5.15.0",
"auto-changelog": "^2.4.0",
"aws-cdk-lib": "^2.17.0",
"constructs": "^10.0.90",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.0",
"tape": "^5.5.2",
"typescript": "^4.6.2",
"typescript-eslint-language-service": "^5.0.0"
},
"dependencies": {
"@wmakeev/highland-tools": "^1.6.0",
"envalid": "^7.3.0",
"mol_data_all": "^1.1.269",
"mol_time_all": "^1.1.140",
"moysklad": "^0.10.0",
"moysklad-fetch-planner": "^0.0.3",
"node-abort-controller": "^3.0.1",
"node-fetch": "^2.6.7"
}
}