-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.43 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "npm run test:other && npm run test:web",
"test:other": "jest --coverage",
"test:web": "cd packages/javascript-fun && jest --coverage",
"dev": "cd packages/javascript-fun && webpack --config ./webpack/develop.js",
"build": "cd packages/javascript-fun && webpack --config ./webpack/production.js",
"web": "cd packages/javascript-fun && node ./dist/node/server.js",
"render": "cd packages/javascript-fun && node ./dist/node/render.js",
"admin": "cd packages/admin && ts-node index.ts",
"collect": "cd packages/crawler && ts-node index.ts",
"sync": "cd packages/db-sync && ts-node index.ts",
"lint": "eslint ./packages",
"cp": ". ./tasks/cp.sh"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.341.0",
"@aws-sdk/util-dynamodb": "^3.341.0",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"dotenv": "^16.0.3",
"dynamodb-observables": "^1.0.0",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}