-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "sas7bdat-web",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "./tools/build.sh",
"eslint": "eslint --ext=js,jsx src",
"start": "cd build && python -m SimpleHTTPServer",
"watch": "watchify -d src/app.js -o build/app.js"
},
"author": "Jeremy Scheff <[email protected]>",
"license": "AGPL-3.0",
"dependencies": {
"babel-runtime": "^6.9.0",
"classnames": "^2.2.5",
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"clean-css": "^3.4.13",
"eslint": "^2.11.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"plugins": [
"transform-async-to-generator",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
],
"presets": [
"es2015",
"react"
]
}
}