-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.48 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
{
"name": "flame-graph-reader",
"version": "0.1.0",
"description": "",
"scripts": {
"start-webpack": "webpack-dev-server",
"start": "NODE_ENV=development nodemon --watch src/ -e 'js, html, vue' --exec 'npm run build-dev; babel-node src/server/server.js'",
"init-dev": "mkdir -p uploads",
"build-dev": "npm run init-dev; webpack --config webpack.build.dev.js",
"build": "npm run init-dev; webpack --config webpack.config.js",
"init-dist": "mkdir -p dist; rm -rf dist/*; cp -r public/* dist/.",
"test": "mocha-webpack --webpack-config webpack.config.js test/**/*.spec.js test/*.spec.js"
},
"author": "Ivan Shubin",
"license": "MPL-2.0",
"devDependencies": {
"axios": "^0.19.0",
"babel-cli": "^6.25.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.25.0",
"vue": "^2.6.10",
"vue-axios": "^2.0.2",
"vue-color": "^2.7.0",
"vue-loader": "^15.8.3",
"vue-router": "^2.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.4",
"express": "^4.16.2",
"express-session": "^1.15.6",
"nodemon": "^1.18.7",
"properties-reader": "0.0.16",
"sinon": "^7.4.2"
}
}