-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.96 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
50
51
{
"name": "en-node-graph-gui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev-web\" \"npm run dev-lib\"",
"deploy": "npm run deploy-web;",
"deploy-web": "npm run build-lib; npm run build-vue-lib; npm run build; npm run netlify; npm run github;",
"github": "git add .; git commit -am \"front-end-deploy\"; git push -u origin master;",
"netlify-lib": "netlify deploy -s REPLACE_ME_NETLIFY_LIB_UUID --dir=dist --prod",
"dev-lib": "nodemon --exec \"npm run build-lib\" --watch ./src/llexec -e js,vue --watch ./src/llexec",
"build-lib": "vue-cli-service build --target lib --name effectnodegraph ./src/llexec/SandBox.vue --dest ./public/lib; cp ./public/lib/effectnodegraph.umd.min.js ./public/raw-lib/effectnodegraph.umd.min.js.txt",
"build-vue-lib": "vue-cli-service build --target lib --name enigraph ./src/llexec/EXEC.vue --dest ./public/iframelib;",
"netlify": "netlify deploy --dir=\"./dist\" --prod",
"dev-web": "vue-cli-service serve",
"disabled-dev-one": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@tweenjs/tween.js": "^17.3.0",
"axios": "^0.19.0",
"brace": "^0.11.1",
"compress-str": "^1.0.2",
"core-js": "^2.6.5",
"dagre": "^0.8.4",
"downscale": "^1.0.6",
"js-cookie": "^2.2.0",
"load-js": "^3.0.3",
"moment": "^2.24.0",
"nprogress": "^0.2.0",
"pako": "^1.0.10",
"raw-loader": "^2.0.0",
"strapi-sdk-javascript": "^0.3.1",
"three": "^0.104.0",
"vue": "^2.6.10",
"vue-router": "^3.0.3",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"vue-template-compiler": "^2.5.21"
}
}