forked from cuttle-cards/cuttle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cuttle",
"version": "3.4.0",
"private": true,
"description": "The deepest card game under the sea",
"scripts": {
"_lint": "vue-cli-service lint --ext .js,.ts,.vue .",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build && cp ./client/public/favicon.ico ./assets",
"test:unit": "vue-cli-service test:unit",
"lint": "npm run _lint -- --no-fix",
"lint:fix": "npm run _lint -- --fix",
"debug": "node debug app.js",
"e2e:client": "cypress run",
"e2e:gui": "cross-env ENABLE_VUE_DEVTOOLS=true cypress open",
"e2e:mockprod": "cross-env CUTTLE_ENV=production npm run e2e:server",
"e2e:server": "cross-env VUE_APP_API_URL=http://localhost:1337 cypress run",
"e2e:server:gui": "cross-env VUE_APP_API_URL=http://localhost:1337 cypress open",
"e2e:server:playground": "cross-env VUE_APP_API_URL=http://localhost:1337 cypress run --config-file tests/e2e/playground/playground.config.js",
"start": "node app.js",
"start:client": "cross-env ENABLE_VUE_DEVTOOLS=true NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve",
"start:dev": "concurrently \"npm run start:server\" \"npm run start:client\"",
"start:devtools": "vue-devtools",
"start:mockprod": "cross-env NODE_OPTIONS=--openssl-legacy-provider CUTTLE_ENV=production npm run build && CUTTLE_ENV=production npm run start:server",
"start:mockprod:tools": "concurrently \"cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=dev ENABLE_VUE_DEVTOOLS=true npm run build && npm run start:server\" \"npm run start:devtools\"",
"start:server": "NODE_OPTIONS=--openssl-legacy-provider node app.js --inspect",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"main": "app.js",
"dependencies": {
"connect-redis": "3.0.2",
"dayjs": "1.11.3",
"lodash": "4.17.21",
"machinepack-passwords": "2.3.0",
"sails": "1.5.3",
"sails-disk": "2.1.1",
"sails-hook-orm": "2.1.1",
"sails-hook-sockets": "1.5.5",
"sails-postgresql": "4.0.0",
"sails.io.js": "1.2.1",
"socket.io-client": "2.3.0",
"vue": "2.6.11",
"vue-router": "3.2.0",
"vuetify": "2.4.3",
"vuex": "3.5.1"
},
"devDependencies": {
"@babel/core": "7.12.16",
"@babel/eslint-parser": "7.12.16",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack4": "^6.5.12",
"@storybook/manager-webpack4": "^6.5.12",
"@storybook/testing-library": "0.0.13",
"@storybook/vue": "^6.5.12",
"@vue/cli-plugin-babel": "4.5.0",
"@vue/cli-plugin-eslint": "5.0.6",
"@vue/cli-plugin-router": "4.5.4",
"@vue/cli-plugin-unit-jest": "5.0.6",
"@vue/cli-service": "4.5.0",
"@vue/devtools": "6.1.4",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "1.1.3",
"@vue/vue2-jest": "27.0.0-alpha.4",
"babel-eslint": "10.1.0",
"babel-jest": "27.0.6",
"babel-loader": "^8.2.5",
"concurrently": "7.2.2",
"cross-env": "^7.0.3",
"cypress": "^11.2.0",
"cypress-fail-fast": "^5.0.1",
"eslint": "8.18.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-prettier": "4.1.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-vue": "9.1.1",
"jest": "27.0.5",
"prettier": "2.7.1",
"sass": "1.32",
"sass-loader": "8.0.0",
"vue-cli-plugin-vuetify": "2.0.7",
"vue-template-compiler": "2.6.11",
"vuetify-loader": "1.7.3"
},
"engines": {
"node": "18.12.1"
}
}