-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
41
42
43
44
45
46
47
48
49
{
"name": "tommy-sdk",
"version": "0.5.0",
"author": "Kam Low <[email protected]> (https://mytommy.com)",
"homepage": "https://mytommy.com",
"license": "ISC",
"description": "SDK for building Tommy addons.",
"scripts": {
"serve": "npm run dev",
"build": "npm run build-prod",
"dev": "cross-env NODE_ENV=development node server.js",
"prod": "cross-env NODE_ENV=production node server.js",
"build-dev": "cross-env NODE_ENV=development webpack -c ./build/webpack.dev.js",
"build-prod": "cross-env NODE_ENV=production webpack -c ./build/webpack.prod.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"update:packages": "node scripts/wipe-dependencies.js && rm -rf node_modules && npm update --save-dev && npm update --save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tommyassociates/tommy-sdk.git"
},
"keywords": [
"tommy",
"sdk",
"api"
],
"dependencies": {
"@fontsource/inter": "^4.5.11",
"@vitejs/plugin-vue": "^4.2.3",
"archiver": "^5.3.1",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"glob": "^10.2.1",
"js-yaml": "^4.0.0",
"ora": "^5.3.0",
"request": "^2.88.2",
"sass": "^1.62.1",
"tommy-core": "link:../tommy-core",
"vite": "^4.3.9",
"vite-express": "^0.9.1",
"vue": "^3.3.4",
"vuex": "^4.0.2"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
}
}