-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.07 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
{
"name": "airbnb-photos",
"version": "1.0.0",
"description": "",
"author": "William Chan",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"react-dev": "webpack -d --watch",
"build": "webpack -p",
"start": "nodemon server/index.js",
"seedNOSQL": "node database/seedMeNoSQLSeymore.js && node database/importNOSQL.js",
"seedSQL": "node database/seedSQL && node database/importSQL.js",
"deploy": "npm run seed && npm run start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors"
},
"dependencies": {
"arangojs": "^6.14.1",
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"file-loader": "^3.0.1",
"jquery": "^3.4.1",
"mongoose": "^5.5.8",
"mysql": "^2.17.1",
"newrelic": "^6.8.0",
"nodemon": "^2.0.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"request": "^2.88.0",
"url-loader": "^1.1.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-enzyme": "^7.0.2",
"sinon": "^7.3.2",
"style-loader": "^0.23.1",
"superagent": "^5.0.5",
"supertest": "^4.0.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
}
}