-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "random-slides",
"version": "0.1.0",
"description": "The customisable app that creates presentations with random content",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --require babel-register",
"build": "browserify -t [ babelify ] app/index.js -o app/public/js/bundle.js",
"dev": "budo -v app/index.js:js/bundle.js -d app/public -- -t [ babelify ]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sealcode/sealslides.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sealcode/sealslides/issues"
},
"homepage": "https://github.com/sealcode/sealslides#readme",
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"budo": "^9.4.7",
"eslint": "^3.17.1",
"eslint-plugin-react": "^6.10.0",
"mocha": "^3.2.0"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"axios": "^0.15.3",
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}