-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-todo-app",
"version": "1.0.2",
"description": "A React powered todo app.",
"main": "src/index.js",
"scripts": {
"e2e": "nightwatch --config nightwatch.conf.BASIC.js"
},
"keywords": [],
"author": "Ionică Bizău <[email protected]> (https://ionicabizau.net)",
"license": "MIT",
"dependencies": {
"bundle": "^2.1.0",
"chromedriver": "^2.38.3",
"env": "0.0.2",
"env2": "^2.2.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-github-corner": "^0.3.0",
"selenium-server": "^3.12.0"
},
"devDependencies": {
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.26.1",
"nightwatch": "^0.9.21",
"react-hot-loader": "^1.3.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"homepage": "https://github.com/IonicaBizau/react-todo-app#readme",
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"bloggify.js",
"bloggify.json",
"bloggify/"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/IonicaBizau/react-todo-app.git"
},
"bugs": {
"url": "https://github.com/IonicaBizau/react-todo-app/issues"
},
"blah": {
"show_installation": true,
"description": "**Hey!** :blush: This is my first project in React. If you find any tips, please share them with me and let me know what can pe improved.",
"is_only_web": false,
"ex_img": "https://i.imgur.com/0g5ycgd.png",
"ex_url": "https://ionicabizau.github.io/react-todo-app",
"installation_command": {
"language": "sh",
"content": [
"git clone https://github.com/IonicaBizau/react-todo-app/",
"cd react-todo-app",
"npm i",
"npm run start:dev",
"open localhost:8080",
"",
"# To build the app for production, run the following command:",
"npm run bundle"
]
}
}
}