-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 KB
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
{
"name": "calendar-component-kt",
"version": "",
"description": "Calendar component for localhost C&C project",
"author": "",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"build": "webpack --mode production --watch",
"start": "nodemon ./server/server.js",
"seed": "node seeding.js",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mysql2": "^1.6.5",
"nodemon": "^1.19.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sequelize": "^5.8.6",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-preset-airbnb": "^3.2.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"jest": "^24.8.0",
"mocha": "^6.1.4",
"should": "^13.2.3",
"supertest": "^4.0.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
}
}