-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "thesis",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon ./bin/www",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"unit": "vue-cli-service test:unit",
"e2e": "vue-cli-service test:e2e",
"int": "mocha --exit ./tests/integration/index.js",
"debug": "nodemon --inspect-brk ./bin/www",
"debug:int": "nodemon --exec \"mocha --inspect-brk --exit ./tests/integration/index.js\"",
"db:dump": "mongodump --db thesis -o db/dump",
"db:seed": "mongorestore --drop --nsInclude 'thesis*' db/dump"
},
"dependencies": {
"body-parser": "^1.18.3",
"connect-mongo": "^2.0.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^6.0.0",
"express": "~4.16.0",
"express-session": "^1.15.6",
"helmet": "^3.13.0",
"mongoose": "^5.2.8",
"morgan": "~1.9.0",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-e2e-cypress": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-unit-jest": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/test-utils": "^1.0.0-beta.20",
"axios": "^0.18.0",
"babel-jest": "^23.0.1",
"bootstrap": "^4.1.3",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"faker": "^4.1.0",
"mocha": "^5.2.0",
"mongoose-seedr": "^0.4.4",
"node-sass": "^4.9.0",
"nodemon": "^1.18.4",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.5.17"
}
}