-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "strimpack",
"description": "node server for strimpack auth, ssr",
"version": "0.1.2",
"private": true,
"dependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react-app": "^3.1.1",
"connect-pg-simple": "^4.2.1",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"ignore-styles": "^5.0.1",
"node-fetch": "^2.1.2",
"passport": "^0.4.0",
"passport-oauth2": "^1.4.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"react": "^16.3.2",
"react-addons-update": "^15.6.2",
"react-dom": "^16.3.2",
"sequelize": "^4.37.6",
"stripe": "^5.8.0"
},
"scripts": {
"start": "nodemon --exec 'node --require dotenv/config --require babel-register --inspect=9229 server/run.js'",
"build": "babel server -d dist",
"serve": "node dist/run.js",
"db": "node --require babel-register server/prepDb.js",
"sync": "node dist/sync.js",
"seed": "node dist/seed.js"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^1.17.3"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-react-jsx"
]
}
}