-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.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
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
{
"name": "game-project",
"version": "2.0.0",
"description": "Some boilerplate code to get you started - get shakin'!",
"engines": {
"node": "~12.11.1"
},
"main": "index.js",
"scripts": {
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "script/deploy",
"start": "node server",
"start-dev": "NODE_ENV='development' npm run build-client-watch & NODE_ENV='development' npm run start-server npm run build:css",
"start-server": "nodemon server -e html,js,scss --ignore public --ignore client",
"test": "NODE_ENV='test' mocha \"./server/**/*.spec.js\" \"./client/**/*.spec.js\" \"./script/**/*.spec.js\" --require @babel/polyfill --require @babel/register",
"seed": "nodemon seed.js",
"build:css": "postcss public/styles/tailwind.css -o public/styles/main.css"
},
"author": "Fullstack Academy of Code",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.8.0",
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"express": "^4.16.4",
"express-session": "^1.17.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"pg": "^7.18.2",
"pg-hstore": "^2.3.2",
"postcss-cli": "^7.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-tailwindcss": "^1.0.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sequelize": "^5.21.11",
"socket.io": "^2.3.0",
"tailwindcss": "^1.4.6"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-function-sent": "7.2.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/register": "^7.10.1",
"axios-mock-adapter": "^1.18.1",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"git-url-parse": "^11.1.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^6.2.3",
"nodemon": "^1.19.4",
"npm-merge-driver": "^2.3.6",
"react-test-renderer": "^16.13.1",
"redux-devtools-extension": "^2.13.5",
"redux-mock-store": "^1.5.4",
"simple-git": "^1.132.0",
"supertest": "^4.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}