-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 3.13 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
{
"name": "taverna_web_client",
"version": "1.0.0",
"description": "The admin interface for Tarvena app ",
"main": "index.js",
"bin": {
"taverna_web_client": "server.js"
},
"scripts": {
"dev": "PORT=4000 NODE_ENV=development node ./webpack/dev.server.js & PORT=4000 NODE_ENV=development node ./bin/server.js",
"pre-lint": "(cd \"./node_modules/\" && pwd)",
"postinstall": "if [[ ${NODE_ENV} != \"production\" ]]; then rsync pre-commit .git/hooks && chmod 755 .git/hooks/pre-commit; fi",
"preinstall": "npm prune",
"prebuild": "rm -rf dist",
"start": "NODE_ENV=production node ./bin/server.js",
"build": "NODE_ENV=production npm run build:client && npm run build:server",
"build:server": "babel ./src -d ./dist -D",
"build:client": "NODE_ENV=production webpack --verboose --colors --display-error-details --config webpack/prod.config.js",
"test": "mocha \"src/**/**/*.test.*\" --require test/.setup.js",
"stylelint": "stylelint --config .stylelintrc \"src/**/**/*.scss\"",
"coverage": "node_modules/.bin/babel-node node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha \"src/**/**/*.test.*\" -- --compilers js:babel-core/register --colors --reporter dot test/ --require test/.setup.js src/**/* && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamtaverna/web_client.git"
},
"keywords": [
"Taverna",
"web-client"
],
"author": "TeamTaverna",
"license": "ISC",
"bugs": {
"url": "https://github.com/teamtaverna/web_client/issues"
},
"homepage": "https://github.com/teamtaverna/web_client#readme",
"dependencies": {
"autoprefixer": "^6.5.3",
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint": "^3.8.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"istanbul": "^0.4.5",
"jsdom": "^9.6.0",
"mocha": "^3.1.2",
"node-sass": "^3.10.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-day-picker": "^5.2.0",
"react-dom": "^15.3.2",
"stylelint": "^7.4.2",
"stylelint-scss": "^1.3.4",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2",
"webpack-isomorphic-tools": "^2.6.3",
"webpack-merge": "^0.14.1"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"coveralls": "^2.11.16",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"istanbul": "^1.0.0-alpha.2",
"mocha-lcov-reporter": "^1.2.0",
"piping": "^1.0.0-rc.4",
"postcss-loader": "^1.1.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"svg-loader": "0.0.2"
},
"engines": {
"node": "6.9.x",
"npm": "~6.6"
}
}