-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "workshop-registration",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"predev": "docker-compose up -d",
"dev": "export NODE_ENV=development ; nodemon index.js",
"postdev": "docker-compose down",
"clean": "rm -rf .next",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production npx next build",
"heroku-postbuild": "npm run build",
"start": "node index.js"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.2",
"redux-devtools-extension": "^2.13.8"
},
"engines": {
"node": "12.x"
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@weco/next-plugin-transpile-modules": "^2.2.1",
"@zeit/next-sass": "^1.0.1",
"classnames": "^2.2.6",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"csv": "^5.1.2",
"express": "^4.16.4",
"form-data": "^3.0.0",
"isomorphic-unfetch": "^3.0.0",
"jsrsasign": "^8.0.12",
"jws": "^4.0.0",
"memoize-one": "^5.0.0",
"moment": "^2.24.0",
"next": "^9.2.2",
"next-compose-plugins": "^2.1.1",
"node-sass": "^4.11.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-jss": "^10.0.4",
"redis": "^3.0.2",
"route-cache": "^0.4.4",
"styled-jsx": "^3.2.1",
"universal-cookie": "^4.0.0",
"uuid": "^7.0.2"
}
}