-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 857 Bytes
/
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
{
"name": "bacon-examples",
"version": "0.0.0",
"description": "Functional Reactive Programming Examples using Bacon.js",
"author": "Federico Knüssel <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fknussel/bacon-examples.git"
},
"scripts": {
"clean": "rimraf dist",
"parcel": "parcel build index.js",
"assets": "cp index.html dist && cp style.css dist",
"build": "npm-run-all clean parcel assets",
"start": "parcel index.html",
"test": "echo \"Error: no test specified\""
},
"dependencies": {
"axios": "^0.19.0",
"baconjs": "^2.0.13",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"react": "^16.10.0",
"react-dom": "^16.10.0",
"react-router-dom": "^5.1.1",
"rimraf": "^3.0.0"
}
}