-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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": "@redwoodjs/project-config",
"version": "6.0.7",
"repository": {
"type": "git",
"url": "https://github.com/redwoodjs/redwood.git",
"directory": "packages/project-config"
},
"license": "MIT",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn node ./build.mjs && run build:types",
"build:pack": "yarn pack -o redwoodjs-project-config.tgz",
"build:types": "tsc --build --verbose",
"build:watch": "nodemon --watch src --ext \"js,ts,tsx\" --ignore dist --exec \"yarn build\"",
"prepublishOnly": "NODE_ENV=production yarn build",
"test": "vitest run src",
"test:watch": "vitest watch src"
},
"dependencies": {
"@iarna/toml": "2.2.5",
"deepmerge": "4.3.1",
"fast-glob": "3.3.2",
"string-env-interpolation": "1.0.1"
},
"devDependencies": {
"esbuild": "0.19.9",
"rimraf": "5.0.5",
"typescript": "5.3.3",
"vitest": "1.2.1"
},
"gitHead": "3905ed045508b861b495f8d5630d76c7a157d8f1"
}