forked from verekia/js-stack-from-scratch
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "js-stack-from-scratch",
"version": "1.0.0",
"description": "JavaScript Stack from Scratch - Step-by-step tutorial to build a modern JavaScript stack",
"scripts": {
"start": "gulp",
"test": "echo \"Error: no test specified\" && exit 1",
"tutorial-test": "gulp main"
},
"eslintConfig": {
"extends": "airbnb",
"plugins": [
"import"
],
"env": {
"browser": true
}
},
"babel": {
"presets": [
"latest",
"react"
]
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"babel-loader": "^6.2.5",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"del": "^2.2.2",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"webpack-stream": "^3.2.0"
},
"repository": "verekia/js-stack-from-scratch",
"author": "Jonathan Verrecchia - @verekia",
"license": "MIT"
}