This repository was archived by the owner on Mar 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
118 lines (118 loc) · 3.42 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "edward-the-app",
"version": "1.0.0",
"private": true,
"description": "Write your novel with the world's most helpful writing app",
"author": "Isaac Lyman <[email protected]>",
"scripts": {
"build": "vue-cli-service build",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"cypress": "npm run pretest && npm run test:e2e",
"dev": "vue-cli-service serve",
"heroku-postbuild": "echo Skip builds on Heroku",
"inspect": "vue inspect > inspect.js",
"integration": "npm run pretest && cypress run",
"pretest": "node tests/pretest.js",
"server": "node server.js",
"server-dev": "nodemon server.js",
"start": "npm run server",
"test": "jest -i"
},
"dependencies": {
"axios": "0.19.2",
"bcryptjs": "2.4.3",
"body-parser": "1.18.2",
"chalk": "2.1.0",
"connect-history-api-fallback": "1.3.0",
"connect-session-knex": "1.6.0",
"connect-timeout": "1.9.0",
"cookie-parser": "1.4.3",
"core-js": "3.6.4",
"cssnano": "4.1.10",
"d3": "4.11.0",
"d3-axis": "1.0.8",
"d3-scale": "1.0.6",
"d3-shape": "1.2.0",
"detect-browser": "3.0.0",
"docx": "4.7.1",
"escape-string-regexp": "1.0.5",
"eventsource-polyfill": "0.9.6",
"express": "4.16.3",
"express-session": "1.15.6",
"express-static-gzip": "0.3.2",
"file-saver": "1.3.3",
"knex": "0.20.13",
"localforage": "1.5.6",
"lodash": "4.17.15",
"mark.js": "8.11.0",
"markov-chains-text": "1.0.0",
"mysql": "2.15.0",
"node-env-file": "0.1.8",
"nodemailer": "4.4.1",
"octicons": "6.0.1",
"opn": "5.1.0",
"ora": "1.2.0",
"passport": "0.4.0",
"passport-local": "1.0.0",
"pdfmake": "0.1.37",
"pg": "7.3.0",
"quill": "1.3.7",
"quill-delta-to-html": "0.5.1",
"raven-js": "3.24.0",
"register-service-worker": "1.0.0",
"request": "2.87.0",
"request-promise-native": "1.0.5",
"rimraf": "2.6.0",
"semver": "5.3.0",
"shallow-equal": "1.0.0",
"shelljs": "0.7.6",
"stripe": "5.6.0",
"sweetalert": "2.0.3",
"tippy.js": "5.2.1",
"uuid": "3.1.0",
"vue": "2.6.11",
"vue-router": "3.0.1",
"vue-spinner": "1.0.3",
"vuedraggable": "2.23.2",
"vuex": "3.0.1",
"vuex-persistedstate": "2.0.0"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^3.0.1",
"@types/knex": "^0.0.67",
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-e2e-cypress": "^4.2.3",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-pwa": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/eslint-config-airbnb": "^5.0.2",
"autoprefixer": "9.7.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"browserslist": "^4.11.0",
"caniuse-lite": "^1.0.30001036",
"compression-webpack-plugin": "^2.0.0",
"cypress": "^3.8.3",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-vue": "^6.2.2",
"fake-indexeddb": "^2.1.1",
"jest": "^23.6.0",
"mock-local-storage": "^1.1.11",
"node-sass": "^4.13.1",
"nodemon": "^1.19.4",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^8.0.0",
"supertest": "^3.4.2",
"vue-template-compiler": "2.6.11"
},
"engines": {
"node": "^10.19.0",
"npm": "^6.14.3"
}
}