-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.28 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
{
"name": "graphity.js",
"private": true,
"author": "Changwan Jun <wan2land@gmail.com>",
"license": "MIT",
"scripts": {
"build": "lerna run build",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint '{packages,extensions}/*/src/**/*.ts'",
"test:unit": "jest --detectOpenHandles --forceExit",
"publish": "npm run build && npm run test && lerna publish from-package"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-decorators": "7.15.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.15.6",
"@babel/plugin-proposal-optional-chaining": "7.14.5",
"@babel/preset-env": "7.15.6",
"@babel/preset-typescript": "7.15.0",
"@types/aws-lambda": "8.10.83",
"@types/express": "4.17.13",
"@types/jest": "27.0.2",
"@types/jsonwebtoken": "8.5.5",
"@types/node": "14.17.19",
"@types/ws": "8.2.0",
"eslint": "7.32.0",
"eslint-config-stable": "0.9.0",
"graphql": "15.6.0",
"jest": "27.2.2",
"lerna": "4.0.0",
"lerna-update-wizard": "0.1.9",
"rimraf": "3.0.2",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
}
}