-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.16 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "open_meta",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.17.1",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"child_process": "^1.0.2",
"classnames": "^2.2.5",
"concurrently": "^3.5.1",
"cors": "^2.8.4",
"dangerously-set-inner-html": "^2.0.1",
"debug": "^3.1.0",
"dotenv": "^5.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"express": "^4.16.2",
"faker": "^4.1.0",
"form-serialize": "^0.7.2",
"fs": "0.0.1-security",
"history": "^4.7.2",
"immutability-helper": "^2.6.4",
"jest": "^22.4.2",
"jest-cli": "^22.4.2",
"jsonwebtoken": "^8.1.1",
"jszip": "^3.1.5",
"lodash": "^4.17.5",
"moment": "^2.20.1",
"mongoose": "^5.0.2",
"morgan": "^1.9.0",
"morgan-toolkit": "^1.2.2",
"nodemon": "^1.14.10",
"path": "^0.12.7",
"pg": "^7.4.1",
"react": "^16.2.0",
"react-app-rewire-ts-jest": "^1.0.17-a",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.2.0",
"react-iframe": "^1.1.0",
"react-iframe-comm": "^1.2.2",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-scripts": "^1.0.17",
"reactstrap": "^5.0.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"semantic-ui-popup": "^2.2.14",
"semantic-ui-react": "^0.77.2",
"sequelize": "^4.32.2",
"sequelize-cli": "^3.2.0",
"sinon": "^4.4.2",
"util": "^0.10.3",
"validate.js": "^0.12.0",
"yargs": "^10.1.1"
},
"scripts": {
"start": "concurrently \"react-app-rewired start\" \"nodemon index.js\"",
"update": "npm i && cd api && npm i && cd ..",
"app": "react-app-rewired start",
"api": "nodemon api/server/index.js",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom --watchAll",
"eject": "react-scripts eject",
"deploy": "npm run build && git add -A && git commit -m 'deploying' && git push heroku master",
"sql:migrate:undo": "cd api && npm run sql db:migrate:undo:all && cd ..",
"sql:migrate": "cd api && npm run sql db:migrate && cd ..",
"sql:seed:undo": "cd api && npm run sql db:seed:undo:all && cd ..",
"sql:seed": "cd api && node ./seeds/sequelize/config.js && cd ..",
"sql:s": "cd api && npm run sql:migrate:undo && npm run sql:migrate && npm run sql:seed && cd ..",
"mg:seed": "node api/seeds/mongoose",
"console": "cd api && node repl.js",
"c": "cd api && node repl.js",
"sql": "cd api && ./node_modules/sequelize-cli/lib/sequelize",
"jest": {
"moduleNameMapper": {
"components(.*)$": "<rootDir>/src/components/$1",
"containers(.*)$": "<rootDir>/src/containers/$1",
"lib(.*)$": "<rootDir>/src/lib/$1",
"reducers(.*)$": "<rootDir>/src/reducers/$1",
"actions(.*)$": "<rootDir>/src/actions/$1"
}
}
},
"proxy": "http://localhost:8000/",
"devDependencies": {
"chalk": "^2.3.0",
"path": "^0.12.7",
"react-app-rewired": "^1.4.1",
"react-dev-utils": "^4.2.1"
}
}