forked from tylerhsu/cutcats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.78 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
{
"name": "cutcats",
"version": "1.0.0",
"description": "Cut Cats accounting software",
"main": "server.js",
"scripts": {
"build": "neutrino build",
"dev": "concurrently 'npm run dev-server' 'npm run dev-client'",
"pretest": "docker-compose up -d",
"test": "neutrino test -- ./setupTests.js \"./!(node_modules|pdfService)/**/*.test.js\"",
"start": "node server.js",
"dev-server": "nodemon server.js",
"dev-client": "neutrino start",
"lint": "eslint --ext .js,.jsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylerhsu/cutcats.git"
},
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tylerhsu/cutcats/issues"
},
"homepage": "https://github.com/tylerhsu/cutcats#readme",
"dependencies": {
"@neutrinojs/mocha": "^8.3.0",
"@neutrinojs/react": "^8.3.0",
"auto-loader": "^0.2.0",
"aws-sdk": "^2.303.0",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"bootstrap": "^4.3.1",
"busboy": "^0.2.14",
"classnames": "^2.2.6",
"compression": "^1.7.2",
"connect-flash": "^0.1.1",
"connect-redis": "^3.3.3",
"csv": "^2.0.0",
"dotenv": "^5.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-plugin-mocha": "^5.1.0",
"express": "^4.16.2",
"express-react-views": "^0.11.0",
"express-session": "^1.15.6",
"file-size": "^1.0.0",
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"js-file-download": "^0.4.1",
"lodash": "^4.17.19",
"moment": "^2.21.0",
"mongoose": "^5.7.5",
"mongoose-deep-populate": "^3.1.1",
"neutrino": "^8.3.0",
"node-sass": "^4.12.0",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"prop-types": "^15.6.2",
"qs": "^6.5.1",
"querystring": "^0.2.0",
"react": "^16.4.1",
"react-dates": "^18.2.2",
"react-dom": "^16.4.1",
"react-dropzone": "^4.2.13",
"react-hot-loader": "^4.3.4",
"react-paginate": "^6.3.0",
"react-popper": "^1.0.0",
"react-redux": "^5.0.7",
"react-url-query": "^1.4.0",
"reactstrap": "^5.0.0-beta",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sass-loader": "^6.0.7",
"session-file-store": "^1.2.0",
"yazl": "^2.4.3"
},
"devDependencies": {
"concurrently": "^3.5.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mock-express-request": "^0.2.2",
"mock-express-response": "^0.2.2",
"nodemon": "^1.18.3",
"should": "^13.2.3",
"sinon": "^4.4.2"
}
}