forked from Clovis-team/clovis-open-code-extracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client:package.json
81 lines (81 loc) · 2.6 KB
/
client: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
{
"name": "client",
"private": true,
"version": "1.0.0",
"description": "Clovis single-page application client",
"main": "index.js",
"scripts": {
"build": "webpack",
"build-for-server": "../client-server/node_modules/.bin/babel --source-maps true src --out-dir server-dist",
"stylelint": "stylelint 'src/**/*.scss' --syntax scss",
"watch": "webpack --watch --hide-modules",
"lint": "eslint . && yarn run stylelint",
"lint:watch": "nodemon node_modules/.bin/eslint .",
"test": "yarn run lint && BABEL_ENV=test NODE_ENV=test mocha src/tests.js --require babel-core/register --globals React",
"test:watch": "yarn run test --watch",
"doc": "jsdoc -c .jsdoc.json"
},
"author": "The Clovis team",
"license": "ISC",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"eslint-loader": "^1.7.1",
"invariant": "^2.2.2",
"leaflet": "^1.0.3",
"leaflet.fullscreen": "^1.4.2",
"linkifyjs": "^2.1.4",
"lodash": "^4.17.2",
"moment": "^2.17.1",
"normalize.css": "^5.0.0",
"normalizr": "^3.0.0",
"popper.js": "^1.9.1",
"promise-polyfill": "^6.0.2",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.1",
"react-datepicker": "^0.40.0",
"react-dom": "^15.4.1",
"react-dropzone": "^4.2.3",
"react-fastclick": "^3.0.2",
"react-file-download": "^0.3.4",
"react-onclickoutside": "^5.10.0",
"react-redux": "4.4.6",
"react-router5": "^4.2.1",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"router5": "^5.1.6",
"socket.io-client": "^1.7.3",
"stylelint": "^7.10.1",
"stylelint-webpack-plugin": "^0.7.0",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"babel-plugin-webpack-alias": "^2.1.2",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"docdash": "^0.4.0",
"enzyme": "^2.7.0",
"eslint": "^3.14.1",
"eslint-config-clovis-app": "^2.0.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"file-loader": "^0.10.0",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"postcss-loader": "^1.2.1",
"sass-loader": "^5.0.0",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
}
}