-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.15 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
{
"name": "js-links",
"version": "1.0.0",
"description": "A links feed web and mobile app for curating the best daily content from the JavaScripters community",
"main": "src/index.js",
"scripts": {
"copy:assets": "cp -r app/resources/ assets/",
"copy:manifest": "cp manifest.json assets/manifest.json",
"webpack:dev": "webpack-dev-server --config ./config/webpack.config.dev.babel.js --env=developement",
"webpack:prod": "NODE_ENV=production webpack --config ./config/webpack.config.prod.babel.js --env=production",
"dev": "npm-run-all --parallel lint webpack:dev",
"lint": "esw config/*.js app --color",
"prod": "npm run webpack:prod && npm run copy:assets && npm run copy:manifest",
"start": "http-server assets/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amite/js-links.git"
},
"keywords": [
"linksfeed",
"newsfeed",
"community",
"javascript"
],
"author": "amite <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/amite/js-links/issues"
},
"homepage": "https://github.com/amite/js-links#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.3.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.9.0",
"npm-run-all": "^4.0.2",
"offline-plugin": "^4.6.2",
"postcss-cssnext": "^2.10.0",
"postcss-loader": "^1.3.3",
"prop-types": "^15.5.4",
"style-loader": "^0.16.1",
"svg-inline-loader": "^0.7.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"react": "^15.5.3",
"react-dom": "^15.5.3",
"react-router-dom": "^4.0.0"
}
}