-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 885 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 885 Bytes
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
{
"name": "root",
"private": true,
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"lerna": "^4.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript2": "^0.30.0",
"shelljs": "^0.8.4",
"ts-node": "^10.2.0"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"inquirer": "^8.1.2",
"nodemon": "^2.0.12",
"rollup": "^2.56.2",
"typescript": "^4.3.5"
},
"scripts": {
"dev": "cross-env NODE_ENV=development node scripts/dev.js",
"build": "node scripts/build.js",
"bootstrap": "lerna bootstrap",
"create:project": "node scripts/create/index.js"
}
}