forked from HelikarLab/candis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 2.47 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
{
"name": "candis",
"version": "0.1.0",
"description": "A data mining suite for DNA microarrays",
"main": "candis/app/client/app/Client.js",
"directories": {
"doc": "docs"
},
"scripts": {
"sass": "node-sass candis/app/client/styles/App.scss candis/app/assets/css/styles.min.css --sourcemap=none --output-style compressed",
"sass.watch": "node-sass --watch candis/app/client/styles/App.scss candis/app/assets/css/styles.min.css --sourcemap=none --output-style compressed",
"webpack": "webpack",
"webpack.watch": "webpack --watch",
"build": "yarn run webpack && yarn run sass",
"start": "concurrently --kill-others \"yarn run sass.watch\" \"yarn run webpack.watch\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/achillesrasquinha/candis.git"
},
"author": "Achilles Rasquinha",
"license": "MIT",
"bugs": {
"url": "https://github.com/achillesrasquinha/candis/issues"
},
"homepage": "https://github.com/achillesrasquinha/candis#readme",
"devDependencies": {
"axios-mock-adapter": "^1.15.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"dotenv": "^4.0.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.3",
"json-loader": "^0.5.7",
"npm-check-updates": "^2.13.0",
"nprogress": "^0.2.0",
"react-hot-loader": "^3.1.3",
"uglifyjs-webpack-plugin": "^1.1.4",
"webpack": "^3.10.0",
"webpack-jarvis": "^0.1.1"
},
"dependencies": {
"axios": "^0.17.1",
"classnames": "^2.2.5",
"create-react-class": "^15.6.2",
"formik": "^0.11.11",
"fuse.js": "^3.2.0",
"jsonwebtoken": "^8.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"moment": "^2.22.1",
"node-sass": "^4.7.2",
"prop-types": "^15.6.0",
"react": "^16.4.1",
"react-data-grid": "^4.0.7",
"react-data-grid-addons": "^4.0.7",
"react-dom": "^16.4.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-select": "^1.2.1",
"react-sortable-hoc": "^0.6.8",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.1",
"redux-thunk": "^2.2.0",
"shortid": "^2.2.8",
"socket.io": "^2.0.4",
"store": "^2.0.12",
"yup": "^0.25.1"
}
}