-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.2 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
{
"name": "intervallo",
"version": "1.0.0",
"description": "audio map",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"start": "nodemon server/server.js --ignore src/",
"startDist": "nodemon server/serverDist.js --ignore src/",
"compile": "npm run clean && mkdirp ./dist && webpack --config prod-webpack.config.js"
},
"author": "stefano bovio",
"license": "ISC",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-0": "6.5.0",
"babel-preset-vue": "2.0.0",
"eslint": "3.19.0",
"eslint-plugin-vue": "4.0.0-beta.3",
"express": "4.14.1",
"nodemon": "1.11.0",
"raw-loader": "0.5.1",
"vue-eslint-parser": "1.0.0",
"vue-loader": "13.5.0",
"vue-template-compiler": "2.5.9",
"webpack": "2.2.1",
"webpack-dev-middleware": "1.10.0",
"webpack-hot-middleware": "2.16.1",
"webpack-parallel-uglify-plugin": "1.0.2"
},
"dependencies": {
"axios": "0.17.1",
"css-loader": "0.28.9",
"lodash": "4.17.4",
"vue": "2.5.9",
"vue-color": "2.4.3"
}
}