-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.12 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": "ssdn",
"private": true,
"bin": "bin/ssdn",
"dependencies": {
"-": "0.0.1",
"@octokit/core": "^3.3.1",
"@sindresorhus/slugify": "^0.9.1",
"acorn": "^7.1.1",
"aws-sdk": "^2.538.0",
"axios": "^0.21.1",
"bl": "^4.0.3",
"dot-prop": "^6.0.1",
"express": "^4.17.1",
"filenamify": "^4.1.0",
"highlight.js": "^10.5.0",
"immer": "^8.0.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"nanoid": "^2.1.1",
"node-fetch": "^2.6.1",
"node-forge": "^0.10.0",
"node-notifier": "^9.0.0",
"object-path": "^0.11.5",
"pino": "^5.13.4",
"prismjs": "^1.23.0",
"react-dev-utils": "^11.0.4",
"react-scripts": "^4.0.3",
"save": "^2.4.0",
"serialize-javascript": "^5.0.1",
"uuid": "^3.3.3",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-typescript": "^7.6.0",
"@types/dotenv": "^6.1.0",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.141",
"@types/nanoid": "^2.0.0",
"@types/node": "^12.7.8",
"@types/pino": "^5.8.10",
"@types/uuid": "^3.4.5",
"babel-core": "^7.0.0-bridge.0",
"dotenv": "^8.1.0",
"lerna": "^3.22.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"pino-pretty": "^3.2.1",
"prettier": "^1.19.1",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=10.16 <11"
},
"resolutions": {
"acorn": "^7.1.1",
"https-proxy-agent": "^2.2.4",
"kind-of": "^6.0.3",
"minimist": "^1.2.5"
},
"scripts": {
"build": "lerna run build --stream",
"start": "lerna run start --parallel",
"check-types": "lerna run check-types --stream",
"lint": "lerna run lint --stream",
"release": "yarn build && bin/release.sh"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/jest"
]
}
}