forked from TeamForkly/Forkly
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "forkly",
"version": "0.0.1",
"description": "see others recipes, fork them, improve them",
"main": "index.js",
"engines": {
"node": "7.6.0"
},
"devDependencies": {
"autoprefixer-stylus": "0.10.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"concurrently": "3.0.0",
"eslint": "^3.12.2",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.8.0",
"react-router-dom": "^4.0.0",
"react-scripts": "0.6.1",
"stylus": "0.54.5",
"webpack": "^2.2.1"
},
"dependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"bcryptjs": "^0.7.12",
"body-parser": "^1.17.1",
"express": "^3.5.0",
"express-handlebars": "^3.0.0",
"history": "4.2.0",
"jquery": "^3.1.1",
"mongodb": "^2.2.11",
"mongoose": "^4.8.6",
"nodemon": "^1.11.0",
"passport": "^0.2.0",
"passport-facebook": "^1.0.3",
"passport-google": "^0.3.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.2",
"q": "^1.0.1",
"radium": "^0.18.2",
"re-base": "2.2.0",
"react": "^15.3.2",
"react-addons-css-transition-group": "15.3.2",
"react-bootstrap": "^0.30.8",
"react-dom": "^15.3.2",
"react-router": "^4.0.0-alpha.4",
"react-router-dom": "^4.0.0",
"request": "^2.81.0",
"webpack": "^2.2.1",
"datamuse": "1.0.5"
},
"scripts": {
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server/index.js",
"init-webpack": "webpack -p",
"init-server": "node server/index.js",
"start": "npm run init-webpack && npm run init-server",
"watch": "concurrently --names \"webpack, stylus\" --prefix name \"npm run start\" \"npm run styles:watch\"",
"build": "react-scripts build",
"eject": "react-scripts eject",
"styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
"styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/.eslintrc"
}
}