This repository was archived by the owner on Feb 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.94 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
{
"name": "flashcards-for-developers",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:5000",
"engine": {
"node": "8.11.1"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"forcedomain": "^1.0.0",
"joi": "^13.6.0",
"joi-objectid": "^2.0.0",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.3.0",
"marked": "^0.6.1",
"mixpanel-browser": "^2.22.4",
"moment": "^2.22.2",
"mongoose": "^5.2.10",
"morgan": "^1.9.0",
"octicons": "^8.1.0",
"pluralize": "^7.0.0",
"primer-box": "2.5.9",
"primer-markdown": "^3.7.7",
"primer-product": "^5.6.7",
"prop-types": "^15.6.2",
"query-string": "^6.2.0",
"rc-tooltip": "^3.7.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-ga": "^2.5.3",
"react-mixpanel": "^0.0.11",
"react-modal": "^3.5.1",
"react-router-dom": "^4.3.1",
"react-scripts": "3.0.0",
"react-share": "^2.2.0",
"react-stripe-elements": "^2.0.1",
"react-test-renderer": "^16.5.1",
"recharts": "^1.3.1",
"stripe": "^6.12.1"
},
"scripts": {
"start": "yarn deploy",
"web": "react-scripts start",
"build": "react-scripts build",
"server": "NODE_ENV=development nodemon --watch server --exec 'node server/index'",
"deploy": "NODE_ENV=production yarn build && NODE_ENV=production node server/index",
"test": "react-scripts test --env=jsdom",
"test:server": "node scripts/run_server_tests.js",
"heroku-postbuild": "yarn build"
},
"devDependencies": {
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint-config-prettier": "^3.4.0",
"nodemon": "^1.18.7",
"prettier": "^1.14.2",
"supertest": "^3.3.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}