-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 883 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
31
32
33
34
35
36
{
"name": "visualising-front-end-performance-demo",
"version": "1.0.0",
"description": "Visualising Front end Performance demo",
"main": "index.js",
"scripts": {
"prestart": "rimraf dist",
"start": "parcel index.html",
"prebuild": "rimraf dist",
"build": "parcel build index.html",
"serve": "npx serve dist/"
},
"keywords": [
"performance",
"front-end",
"react",
"mobx"
],
"author": "richiemccoll <[email protected]>",
"license": "ISC",
"devDependencies": {
"parcel": "^1.12.4",
"rimraf": "^3.0.2"
},
"dependencies": {
"@project-zero/components": "^1.1.0-alpha.0",
"date-fns": "^2.14.0",
"masonic": "^3.2.0",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"mobx-state-tree": "^3.16.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.5"
}
}