-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.08 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
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
{
"name": "csn-tool",
"version": "1.0.0",
"engines": {
"node": "8.9.x"
},
"description": "Critical Sites Network Tool 2.0",
"main": "server.js",
"scripts": {
"test": "NODE_PATH=./app jest",
"test --watch": "NODE_PATH=./app jest --watch",
"dev": "./node_modules/nodemon/bin/nodemon.js --ignore 'app/' --exec npm run start",
"build": "webpack --config ./config/webpack.config.js --progress --profile --colors",
"postinstall": "yarn run build",
"lint": "./node_modules/.bin/eslint . --quiet",
"prepush": "yarn run lint",
"extract": "i18n_extract --source=./app --locales=./app/locales",
"import": "i18n_import --locales=./app/locales --translations=./app/locales"
},
"repository": {
"type": "git",
"url": "https://github.com/Vizzuality/csn-tool.git"
},
"author": {
"name": "Vizzuality",
"email": "hello@vizzuality.com",
"url": "http://vizzuality.com"
},
"license": "MIT",
"dependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.11.0",
"body-parser": "^1.15.1",
"classnames": "^2.2.5",
"chroma-js": "^2.0.2",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.21.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.13",
"morgan": "^1.9.1",
"postcss-cssnext": "^2.7.0",
"postcss-extend": "^1.0.4",
"postcss-functions": "^2.1.0",
"postcss-hexrgba": "^0.2.1",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-mixins": "^5.0.0",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"pretty-error": "^2.0.0",
"prop-types": "^15.6.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-ga": "^2.1.2",
"react-js-pagination": "^3.0.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.5",
"react-router-scroll": "^0.3.2",
"react-scroll": "^1.6.5",
"react-select": "1.0.0-rc.3",
"react-smooth-collapse": "^1.5.0",
"react-sticky": "^5.0.5",
"redux": "^3.5.2",
"redux-i18n": "^1.0.8",
"redux-thunk": "^2.1.0",
"request": "^2.78.0",
"request-promise": "^4.1.1",
"reselect": "^3.0.1",
"scroll-behavior": "^0.9.3",
"smoothscroll": "^0.3.0",
"style-loader": "^0.13.1",
"stylelint": "7.2.0",
"stylelint-webpack-plugin": "^0.3.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dotenv-plugin": "^1.3.2"
},
"devDependencies": {
"enzyme": "^2.8.2",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1",
"husky": "^0.11.7",
"jest": "^20.0.4",
"jsdom": "^11.0.0",
"nodemon": "^1.11.0",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"stylelint-config-standard": "^13.0.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-middleware": "^1.6.1"
}
}