-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
61 lines (61 loc) · 1.88 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
{
"name": "boredapi",
"version": "1.1.0",
"description": "A simple and free API to find things to do when you're bored",
"scripts": {
"build-dev": "npm run clean; webpack --inline --progress --color --config build/webpack.dev.conf.js",
"build": "npm run clean; webpack --inline --progress --color --config build/webpack.prod.conf.js",
"start-dev": "export NODE_ENV=development; npm run build-dev && node server.js",
"start": "export NODE_ENV=production; npm run build && node server.js",
"clean": "rm -r dist/*",
"test-i": "mocha test/backend/integration --timeout 60000",
"test-db": "mocha test/db --timeout 60000",
"test": "npm run test-i && npm run test-db"
},
"license": "MIT",
"_moduleAliases": {
"@": "./",
"@b": "./src/backend",
"@f": "./src/frontend",
"@t": "./test",
"@s": "./scripts"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"keen-tracking": "^4.4.1",
"module-alias": "^2.2.2",
"mongoose": "^5.9.9",
"vue": "^2.6.11",
"vue-notification": "^1.3.20",
"vue-resource": "^1.5.1",
"vue-router": "^3.1.6"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"ajv": "^6.12.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"eslint": "^7.0.0",
"faker": "^4.1.0",
"html-webpack-plugin": "^4.2.0",
"mongodb-memory-server": "^6.5.2",
"sinon": "^9.0.2",
"vue-loader": "^15.9.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
}
}