forked from redwoodjs/redwood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (39 loc) · 1.25 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
{
"private": true,
"license": "MIT",
"npmClient": "yarn",
"useWorkspaces": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"npm-packlist": "2.2.2",
"typescript-transform-paths": "3.0.2"
},
"resolutions": {
"@types/react": "17.0.14",
"prop-types": "15.7.2",
"react-dom": "17.0.2",
"react": "17.0.2",
"typescript": "4.3.5",
"vscode-languageserver-protocol": "3.15.3",
"vscode-languageserver-types": "3.15.1",
"vscode-languageserver": "6.1.1",
"vscode-languageserver-textdocument": "1.0.1"
},
"scripts": {
"framework": "yarn --cwd ./tasks/framework-tools",
"build": "yarn framework build",
"build:js": "yarn framework build:js",
"build:types": "yarn framework build:types",
"build:clean": "yarn clean:prisma && yarn framework build:clean",
"build:watch": "yarn framework build:watch",
"test": "yarn framework test",
"clean:prisma": "rimraf node_modules/.prisma/client && node node_modules/@prisma/client/scripts/postinstall.js",
"lint": "yarn framework lint",
"lint:fix": "yarn framework lint:fix",
"postinstall": "yarn framework install",
"build:link": "node ./tasks/build-and-copy",
"build:test-project": "node ./tasks/test-project/test-project"
}
}