-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.6 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
{
"name": "truthgoggles",
"version": "0.1.0",
"private": true,
"author": "Bad Idea Factory <[email protected]>",
"dependencies": {
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^14.0.2",
"parcel": "^1.11.0",
"pg": "^7.4.3",
"prop-types": "^15.x",
"react": "0.14.x || 15.x || 16.x",
"react-datepicker": "^2.1.0",
"react-dom": "0.14.x || 15.x || 16.x",
"react-router-dom": "^4.3.1",
"react-scroll-sync": "^0.7.0",
"react-string-replace": "^0.4.1",
"sequelize": "^5.15.1",
"styled-components": "^4.1.3"
},
"scripts": {
"start": "concurrently 'yarn start:node' 'yarn start:parcel'",
"watch:parcel": "./node_modules/.bin/parcel watch src/client/index.html",
"start:node": "nodemon --watch src --exec yarn babel-node -- src/server/index.js",
"start:parcel": "./node_modules/.bin/parcel src/client/index.html",
"build": "concurrently 'yarn build:node' 'yarn build:parcel'",
"build:node": "babel src -d lib",
"build:parcel": "./node_modules/.bin/parcel build src/client/index.html",
"lint": "./node_modules/.bin/eslint 'src/**/*.js'",
"test": ""
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"concurrently": "^4.1.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"nodemon": "^1.18.10"
}
}