-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.49 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
103
{
"name": "dih-webapp",
"version": "1.0.6",
"description": "Webapp for DiH-project",
"main": "public/index.html",
"scripts": {
"start": "./node_modules/babel-cli/bin/babel-node.js webpack/server",
"start:dev": "./node_modules/babel-cli/bin/babel-node.js webpack/server",
"test": "npm run lint && npm run start:dev | npm run test:e2e",
"lint": "eslint --ignore-path .gitignore .",
"selenium": "selenium-standalone",
"test:e2e": "wdio test/wdio.conf.js",
"clean": "rm -rf dist",
"deploy:staging": "npm run clean && npm run dist:staging && aws s3 cp ./dist s3://$BUCKET --recursive",
"dist:staging": "webpack --config webpack/staging.config.js",
"deploy:production": "npm run clean && npm run dist:production && aws s3 cp ./dist s3://$BUCKET --recursive",
"dist:production": "webpack --config webpack/production.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capraconsulting/dih-webapp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://jira.capraconsulting.no/secure/RapidBoard.jspa?rapidView=90&projectKey=DIH&view=planning.nodetail"
},
"homepage": "https://github.com/capraconsulting/dih-webapp#readme",
"devDependencies": {
"autoprefixer": "~6.4.0",
"babel-cli": "~6.10.1",
"babel-core": "~6.10.4",
"babel-loader": "~6.2.4",
"babel-plugin-transform-object-rest-spread": "~6.8.0",
"babel-preset-es2015": "~6.9.0",
"babel-preset-react": "~6.11.1",
"babel-preset-stage-0": "~6.5.0",
"bluebird": "^3.4.1",
"chai": "~3.5.0",
"chai-as-promised": "~5.3.0",
"copy-webpack-plugin": "~3.0.1",
"css-loader": "~0.23.1",
"cucumber": "~0.10.2",
"eslint": "~2.13.1",
"eslint-config-airbnb": "~9.0.1",
"eslint-plugin-import": "~1.9.2",
"eslint-plugin-jsx-a11y": "~1.5.3",
"eslint-plugin-react": "~5.2.2",
"express": "~4.14.0",
"extract-text-webpack-plugin": "~1.0.1",
"file-loader": "~0.9.0",
"html-webpack-plugin": "~2.21.0",
"http-proxy-middleware": "~0.16.0",
"json-loader": "^0.5.4",
"jsonwebtoken": "~7.0.1",
"node-libs-browser": "~1.0.0",
"node-sass": "~3.8.0",
"object-assign": "~4.1.0",
"phantomjs-prebuilt": "~2.1.7",
"postcss-loader": "~0.9.1",
"redux-devtools": "~3.3.1",
"redux-devtools-dock-monitor": "~1.1.1",
"redux-devtools-log-monitor": "~1.0.11",
"sass-loader": "~4.0.0",
"selenium-standalone": "~5.3.1",
"source-map-loader": "~0.1.5",
"style-loader": "~0.13.1",
"url-loader": "~0.5.7",
"wd-selenium-hooks": "~0.1.0",
"wdio": "~0.3.3",
"wdio-cucumber-framework": "~0.1.0",
"wdio-junit-reporter": "~0.1.0",
"wdio-sauce-service": "~0.2.2",
"wdio-selenium-standalone-service": "~0.0.5",
"webdriverio": "~4.1.1",
"webpack": "~1.13.1",
"webpack-dev-middleware": "~1.6.1",
"webpack-hot-middleware": "~2.12.0"
},
"dependencies": {
"axios": "0.12.0",
"json-loader": "^0.5.4",
"lodash": "4.13.1",
"moment": "2.19.3",
"normalize.css": "4.2.0",
"outdated-browser-rework": "^1.0.2",
"qs": "^6.3.0",
"raven-js": "3.3.0",
"react": "15.1.0",
"react-addons-update": "15.1.0",
"react-breadcrumbs": "1.3.16",
"react-datepicker": "0.28.2",
"react-dom": "15.1.0",
"react-notification-system": "0.2.7",
"react-quill": "1.0.0-beta-1",
"react-redux": "4.4.5",
"react-router": "2.5.1",
"redux": "3.5.2",
"redux-form": "5.3.2",
"redux-thunk": "2.1.0",
"semantic-ui-css": "2.2.1"
}
}