-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "pv",
"version": "0.2.2",
"description": "Progressive and portable parallel processing pipelines. ",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "node build/build.js",
"dev": "webpack-dev-server --inline --progress --config build/webpack.config.js",
"server": "webpack --watch --config build/webpack.node.config.js",
"start": "npm run dev"
},
"author": "Kelvin Li",
"license": "BSD-3-Clause",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chai": "^4.1.2",
"csv-parse": "^4.6.3",
"express": "^4.16.4",
"jStat": "^1.7.1",
"mocha": "^5.1.1",
"mysql": "^2.16.0",
"nodemon-webpack-plugin": "^4.1.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.39.3",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.7.2",
"ws": "^6.1.3"
},
"dependencies": {
"p3.js": "^0.5.0",
"p4.js": "^0.6.6"
}
}