-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 873 Bytes
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
{
"name": "test-react-dots",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "budo index.js --live",
"build": "browserify index.js | uglifyjs -mc > public/index.js",
"deploy": "npm run build && surge public",
"test": "standard"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"budo": "^10.0.0",
"create-react-class": "^15.6.0",
"jsonist": "^1.3.0",
"linmap": "^1.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"react"
]
}
]
]
},
"devDependencies": {
"browserify": "^14.4.0",
"standard": "^10.0.3",
"surge": "^0.19.0",
"uglify-es": "^3.0.28"
}
}