-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "parallel-demo",
"version": "1.0.0",
"description": "An example of parallel programming in the browser for AP CSP.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel src/index.html --out-dir docs",
"build": "parcel build src/index.html --out-dir docs --public-url ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pamelafox/parallel-demo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pamelafox/parallel-demo/issues"
},
"homepage": "https://github.com/pamelafox/parallel-demo#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"highcharts": "^9.0.0",
"resize-image-data": "^0.3.0",
"threads": "^1.0.0",
"workerpool": "^5.0.4"
},
"babel": {
"presets": [
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"cssnano": "^5.1.14"
}
}