sloth-d2c-node 0.0.1-beta60 → 0.0.1-beta61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +21 -21
package/package.json
CHANGED
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sloth-d2c-node",
|
|
3
|
-
"version": "0.0.1-
|
|
3
|
+
"version": "0.0.1-beta61",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "NODE_ENV=production nest build",
|
|
9
|
+
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
10
|
+
"start": "nest start",
|
|
11
|
+
"dev": "NODE_ENV=development nest start --watch --debug --inspect-brk=localhost:9229",
|
|
12
|
+
"start:debug": "nest start --debug --watch",
|
|
13
|
+
"start:prod": "node dist/main",
|
|
14
|
+
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
15
|
+
"pm2start": "IS_DOCKER=true pm2-runtime start pm2.config.js --env",
|
|
16
|
+
"pm2restart": "pm2 restart pm2.config.js",
|
|
17
|
+
"test": "jest",
|
|
18
|
+
"test:watch": "jest --watch",
|
|
19
|
+
"test:cov": "jest --coverage",
|
|
20
|
+
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
21
|
+
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
22
|
+
},
|
|
7
23
|
"exports": {
|
|
8
24
|
"./convert": "./dist/utils/d2c-convert.js"
|
|
9
25
|
},
|
|
@@ -16,7 +32,7 @@
|
|
|
16
32
|
"@nestjs/core": "^10.0.0",
|
|
17
33
|
"@nestjs/jwt": "~10.2.0",
|
|
18
34
|
"@nestjs/platform-express": "^10.0.0",
|
|
19
|
-
"sloth-d2c-figma-plugin": "2.0.3-
|
|
35
|
+
"sloth-d2c-figma-plugin": "2.0.3-beta69",
|
|
20
36
|
"@tailwindcss/cli": "~0.1.2",
|
|
21
37
|
"@tailwindcss/node": "4.0.0-alpha.26",
|
|
22
38
|
"@tailwindcss/oxide": "4.0.0-alpha.26",
|
|
@@ -52,6 +68,7 @@
|
|
|
52
68
|
"@nestjs/cli": "^10.0.0",
|
|
53
69
|
"@nestjs/schematics": "^10.0.0",
|
|
54
70
|
"@nestjs/testing": "^10.0.0",
|
|
71
|
+
"@sloth-d2c/shared-types": "workspace:*",
|
|
55
72
|
"@types/express": "^4.17.17",
|
|
56
73
|
"@types/jest": "^29.5.2",
|
|
57
74
|
"@types/lodash": "~4.14.172",
|
|
@@ -69,8 +86,7 @@
|
|
|
69
86
|
"ts-loader": "^9.4.3",
|
|
70
87
|
"ts-node": "^10.9.1",
|
|
71
88
|
"tsconfig-paths": "^4.2.0",
|
|
72
|
-
"typescript": "^5.1.3"
|
|
73
|
-
"@sloth-d2c/shared-types": "1.0.0"
|
|
89
|
+
"typescript": "^5.1.3"
|
|
74
90
|
},
|
|
75
91
|
"files": [
|
|
76
92
|
"dist"
|
|
@@ -91,21 +107,5 @@
|
|
|
91
107
|
],
|
|
92
108
|
"coverageDirectory": "../coverage",
|
|
93
109
|
"testEnvironment": "node"
|
|
94
|
-
},
|
|
95
|
-
"scripts": {
|
|
96
|
-
"build": "NODE_ENV=production nest build",
|
|
97
|
-
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
98
|
-
"start": "nest start",
|
|
99
|
-
"dev": "NODE_ENV=development nest start --watch --debug --inspect-brk=localhost:9229",
|
|
100
|
-
"start:debug": "nest start --debug --watch",
|
|
101
|
-
"start:prod": "node dist/main",
|
|
102
|
-
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
103
|
-
"pm2start": "IS_DOCKER=true pm2-runtime start pm2.config.js --env",
|
|
104
|
-
"pm2restart": "pm2 restart pm2.config.js",
|
|
105
|
-
"test": "jest",
|
|
106
|
-
"test:watch": "jest --watch",
|
|
107
|
-
"test:cov": "jest --coverage",
|
|
108
|
-
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
109
|
-
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
110
110
|
}
|
|
111
|
-
}
|
|
111
|
+
}
|