This repository has been archived by the owner on Mar 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.55 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
{
"name": "bouffe-2016",
"version": "0.0.0",
"description": "Appli bouffe UA 2016",
"main": "dist/index.html",
"scripts": {
"build": "rm -rf dist/bundle.js dist/bundle.js.map dist/styles.css dist/styles.css.map && webpack",
"build:watch": "npm run build -- --watch",
"build:prod": "cross-env NODE_ENV=production npm run build",
"server": "hz serve --dev",
"server:prod": "hz serve --bind 0.0.0.0 --secure no --permissions no --auto-create-collection yes --auto-create-index yes --allow-unauthenticated yes --allow-anonymous yes --serve-static ./dist --access-control-allow-origin '*' --schema-file .hz/schema.toml",
"dev": "concurrent \"npm run build:watch\" \"npm run server\"",
"flow": "flow check --all \"src\"",
"lint": "eslint src",
"start": "npm run build:prod && npm run server:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ungdev/bouffe-2016.git"
},
"author": "Xuan-Thi N'Guyen <[email protected]>",
"contributors": [
"Gabriel Juchault <[email protected]>",
"Alexis Grosjean <[email protected]",
"Arnaud Dufour <[email protected]"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ungdev/bouffe-2016/issues"
},
"homepage": "https://github.com/ungdev/bouffe-2016#readme",
"dependencies": {
"@horizon/client": "^2.0.0",
"autoprefixer": "^6.4.1",
"axios": "^0.18.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chart.js": "^2.7.1",
"classnames": "^2.2.5",
"concurrently": "^2.2.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"dragscroll": "0.0.8",
"extract-text-webpack-plugin": "^1.0.1",
"flow-bin": "^0.32.0",
"horizon": "^2.0.0",
"json-loader": "^0.5.4",
"lodash.clone": "^4.5.0",
"moment": "^2.22.2",
"normalize.css": "^4.2.0",
"postcss": "^5.2.0",
"postcss-css-variables": "^0.8.0",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.13.0",
"postcss-nested": "^1.0.0",
"react-lite": "^0.15.18",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"redux-logger": "^2.7.0",
"redux-thunk": "^2.1.0",
"socket.io-client": "^2.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
},
"devDependencies": {
"eslint": "^3.8.0",
"eslint-plugin-react": "^6.4.1"
}
}