-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 949 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
36
{
"name": "webembeds",
"version": "0.0.1",
"author": "Girish Patil <devegpat@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"website:dev": "yarn workspace @webembeds/website dev",
"website:start": "yarn workspace @webembeds/website start",
"website:build": "yarn workspace @webembeds/website build",
"core:watch": "yarn workspace @webembeds/core watch",
"core:build": "yarn workspace @webembeds/core build",
"build-all": "yarn core:build && yarn website:build",
"test": "yarn workspace @webembeds/core test",
"commit": "git-cz"
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=12.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}