-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.62 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.62 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "twitterapp",
"version": "1.0.0",
"description": "app using twitter api",
"main": "app.js",
"now": {
"name": "twitterfeed app",
"alias": "twitterfeed"
},
"scripts": {
"// env": "npm run env | grep twitterapp && echo '\n\n' && npm run env | grep npm_package && echo 'from shell \n' && printenv",
"start": "npm run dev",
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"prod:build:assets": "npm run build",
"prod:build:server": "NODE_ENV=production babel-node ./server.js",
"prod:serve": "npm run prod:build:assets && npm run prod:build:server",
"// placeholder task for prod": "build + server",
"watch:server": "nodemon server --exec babel-node",
"dev": "NODE_ENV=development npm run watch:server && open http://localhost:8889",
"lint": "./node_modules/.bin/eslint --ext js --ext jsx src || exit 0",
"serve:static": "webpack-dev-server --progress --profile --colors",
"dev:static": " webpack-dashboard -- webpack-dev-server --progress --profile --colors",
"test": "echo \"Error: no test specified\" && exit 1",
"now-build": "webpack --config webpack.production.config.js",
"now-start": "NODE_ENV=production babel-node ./server.js",
"deploy": "./node_modules/.bin/now -e CONSUMER_TOKEN=@consumertoken -e CONSUMER_TOKEN_SECRET=@consumertokensecret -e ACCESS_KEY=@accesskey -e ACCESS_SECRET=@accesssecret"
},
"keywords": [
"twitter",
"api",
"javascript"
],
"author": "Jon Laz <jonathan.lazarini@wanadoo.fr>",
"license": "MIT",
"devDependencies": {
"babel-core": "6.23.1",
"babel-eslint": "6.1.2",
"babel-loader": "6.3.2",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "1.2.0",
"babel-preset-es2015": "6.22.0",
"babel-runtime": "^6.22.0",
"bootstrap-loader": "2.0.0-beta.22",
"bootstrap-sass": "3.3.7",
"css-loader": "0.26.1",
"eslint": "3.17.0",
"extract-text-webpack-plugin": "^v2.0.0-rc.1",
"file-loader": "^0.10.0",
"fs": "0.0.1-security",
"html-webpack-plugin": "^2.26.0",
"jquery": "3.1.1",
"node-sass": "4.5.0",
"nodemon": "1.11.0",
"postcss-loader": "^1.2.2",
"pug": "2.0.0-beta11",
"resolve-url-loader": "2.0.2",
"sass-loader": "6.0.2",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "2.2.1",
"webpack-cleanup-plugin": "^0.4.2",
"webpack-dashboard": "^0.3.0",
"webpack-dev-middleware": "1.10.1",
"webpack-dev-server": "^2.4.1",
"webpack-hot-middleware": "2.18.0"
},
"dependencies": {
"babel-cli": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-2": "6.22.0",
"body-parser": "1.17.1",
"bootstrap": "3.3.7",
"bootstrap-sass": "3.3.7",
"css-loader": "0.26.1",
"debug": "2.6.2",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.0",
"express": "4.15.2",
"express-session": "1.15.1",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.28.0",
"http": "0.0.0",
"jquery": "3.1.1",
"jsonfile": "2.4.0",
"node-sass": "4.5.0",
"nodemon": "1.11.0",
"now": "4.7.1",
"oauth": "0.9.15",
"path": "0.12.7",
"pug": "2.0.0-beta11",
"pug-cli": "1.0.0-alpha6",
"pug-html-loader": "1.1.1",
"raw-loader": "0.5.1",
"sass-loader": "6.0.2",
"style-loader": "0.13.1",
"url": "0.11.0",
"util": "0.10.3",
"webpack-manifest-plugin": "1.1.0",
"xmlhttprequest": "1.8.0"
}
}