-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 924 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
{
"name": "room-manager",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist ./.cache",
"bundle": "parcel ./src/index.html",
"mockup": "npm run clean && cross-env mockup=true npm run bundle",
"start": "npm run clean && npm run bundle",
"build": "npm run clean && parcel build ./src/index.html --no-source-maps --detailed-report"
},
"author": "Gürhan Mermer <[email protected]>",
"license": "AGPL-3.0",
"dependencies": {
"mobx": "^5.5.2",
"mobx-react": "^5.3.6",
"react": "^16.6.0",
"react-dom": "^16.6.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"node-sass": "^4.12.0",
"parcel-bundler": "^1.12.3",
"rimraf": "^2.6.2"
}
}