-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 897 Bytes
/
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
{
"name": "experiment-node-server-root",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"lint": "lerna run lint",
"test": "jest",
"start": "yarn --cwd packages/ssr-demo start"
},
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.1",
"eslint-plugin-prettier": "^3.1.4",
"genversion": "^2.3.1",
"jest": "^26.6.3",
"lerna": "^6.6.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.2",
"typedoc": "^0.23.9",
"typescript": "^4.7.4"
},
"dependencies": {}
}