forked from flipenjor/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "@tammo/openform",
"version": "0.1.0",
"description": "",
"main": "start.js",
"scripts": {
"test": "jest",
"dev": "nodemon --watch api/ --verbose start.js --exec babel-node",
"build:static": "cp node_modules/react-table/react-table.css static/react-table.css",
"build:overlay": "webpack --config ./overlay/webpack.config.js",
"build": "next build && yarn build:static && yarn build:overlay",
"start": "node .",
"heroku-postbuild": "yarn build",
"prettier": "prettier --write '{api,components,pages,overlay}/**/*.js'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "0.18.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.4",
"babel-plugin-jsx-display-if": "3.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"body-parser": "1.18.2",
"classnames": "2.2.5",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"css-loader": "0.28.11",
"dotenv": "5.0.1",
"express": "4.16.3",
"http-errors": "1.6.3",
"mongoose": "5.0.12",
"next": "5.1.0",
"passport": "0.4.0",
"passport-local": "1.0.0",
"passport-local-mongoose": "5.0.0",
"react": "16.3.0",
"react-copy-to-clipboard": "5.0.1",
"react-dom": "16.3.0",
"react-table": "6.8.0",
"react-timestamp": "4.4.0",
"style-loader": "0.20.3",
"uuid": "3.2.1",
"webpack": "4.4.1",
"webpack-cli": "2.0.13",
"webpack-dev-server": "3.1.1"
},
"devDependencies": {
"jest": "22.4.3",
"nodemon": "1.17.2",
"prettier": "1.11.1"
}
}