-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.66 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
{
"name": "dx-dinner",
"version": "1.0.0",
"description": "A demo dinner system for a fictional startup",
"scripts": {
"api-start": "node --experimental-modules ./api/main.mjs",
"api-start-dev": "SET NODE_ENV=\"development\" && node --experimental-modules ./api/main.mjs",
"api-test": "mocha -r esm ./tests/api",
"app-serve": "parcel ./index.html --out-dir ./output/parcel-serve --cache-dir ./output/parcel-serve-cache --port 1234",
"app-watch": "parcel watch ./index.html --out-dir ./output/parcel-watch --cache-dir ./output/parcel-watch-cache",
"app-build": "parcel build ./index.html --out-dir ./output/parcel-build --no-cache --no-minify",
"travis-test": "npm run api-test",
"heroku-postbuild": "npm run app-build",
"heroku-start": "npm run api-start"
},
"engines": {
"node": "11.10.0"
},
"author": "Guilherme Reginaldo Ruella <[email protected]>",
"dependencies": {
"@babel/runtime": "7.1.2",
"body-parser": "1.18.3",
"cors": "2.8.5",
"dotenv": "7.0.0",
"express": "4.16.4",
"muse-ui": "3.0.2",
"uuid": "3.3.2",
"vue": "2.6.10",
"vue-material": "1.0.0-beta-10.2",
"vue-router": "3.0.2",
"vuex": "^3.1.0"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@vue/component-compiler-utils": "2.6.0",
"babel-preset-env": "1.7.0",
"chai": "4.2.0",
"del": "4.1.0",
"esm": "3.2.22",
"gulp": "4.0.0",
"mocha": "6.0.2",
"parcel-bundler": "1.12.3",
"vue-hot-reload-api": "2.3.3",
"vue-template-compiler": "2.6.10"
}
}