-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
executable file
·78 lines (78 loc) · 2.54 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
{
"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": "$(yarn bin)/node-sass src/candis/app/client/styles/App.scss src/candis/app/assets/css/styles.min.css --sourcemap=none --output-style compressed",
"sass.watch": "$(yarn bin)/node-sass --watch src/candis/app/client/styles/App.scss src/candis/app/assets/css/styles.min.css --sourcemap=none --output-style compressed",
"webpack": "$(yarn bin)/webpack",
"webpack.watch": "$(yarn bin)/webpack --watch",
"build": "yarn run webpack && yarn run sass",
"start:development": "$(yarn bin)/concurrently --kill-others \"yarn run sass.watch\" \"yarn run webpack.watch\"",
"test": "$(yarn bin)/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.16.0",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.4",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.6.1",
"dotenv": "^4.0.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^22.4.4",
"json-loader": "^0.5.7",
"npm-check-updates": "^2.15.0",
"nprogress": "^0.2.0",
"react-hot-loader": "^3.1.3",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.12.0"
},
"dependencies": {
"axios": "^0.17.1",
"classnames": "^2.2.6",
"create-react-class": "^15.6.3",
"formik": "^0.11.11",
"fuse.js": "^3.4.5",
"jsonwebtoken": "^8.5.1",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"prop-types": "^15.6.0",
"react": "^16.8.6",
"react-data-grid": "^4.0.9",
"react-data-grid-addons": "^4.0.9",
"react-dom": "^16.8.6",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-select": "^1.3.0",
"react-sortable-hoc": "^0.6.8",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"shortid": "^2.2.14",
"socket.io": "^2.2.0",
"store": "^2.0.12",
"yup": "^0.27.0"
}
}