-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.47 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
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
{
"name": "",
"version": "",
"description": "",
"author": "",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"build": "webpack -d --watch",
"start": "nodemon server/index.js",
"test": "jest --verbose",
"seed": "node database/seed.js",
"docker-build": "node database/seed.js && nodemon server/index.js"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest",
".*": "<rootDir>/node_modules/jest-css-modules"
},
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"axios": "^0.18.0",
"babel-core": "^7.0.0-bridge.0",
"css-loader": "^1.0.0",
"express": "^4.16.3",
"faker": "^4.1.0",
"jest-cli": "^23.6.0",
"moment": "^2.22.2",
"mysql": "^2.16.0",
"nodemon": "^1.18.4",
"path": "^0.12.7",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"sequelize": "^4.38.0",
"sequelize-test-helpers": "^1.0.4",
"sinon": "^6.2.0",
"style-loader": "^0.23.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-es2017": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"chai": "^4.1.2",
"cors": "^2.8.4",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"jest-css-modules": "^1.1.0",
"mini-css-extract-plugin": "^0.4.2",
"morgan": "^1.9.1",
"mysql2": "^1.6.1",
"query-string": "^6.1.0",
"regenerator-runtime": "^0.12.1",
"sequelize-mock": "^0.10.2",
"sinon": "^6.2.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-combine-loaders": "^2.0.4"
}
}