-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.75 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
{
"name": "deployment-exercise",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-client": "webpack -p",
"deploy": "script/deploy",
"heroku-token": "script/encrypt-heroku-auth-token.js",
"seed": "node script/seed.js",
"start": "node server/index.js",
"start-dev": "nodemon server/index.js --ignore public --ignore client & webpack -w",
"test": "NODE_ENV=test mocha {server,client}/**/*.test.js --require @babel/polyfill --require @babel/register"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.1",
"express": "^4.16.3",
"faker": "^4.1.0",
"git-url-parse": "^11.1.2",
"nodemon": "^1.18.9",
"pg": "^7.4.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"sequelize": "^4.38.1",
"simple-git": "^1.122.0",
"yaml": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.2",
"chai": "^4.1.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"mocha": "^5.2.0",
"supertest": "^3.3.0",
"webpack": "^4.20.1",
"webpack-cli": "^3.1.1"
}
}