forked from dddwa/dddperth-website
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.42 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": "dddmelbourne-website",
"version": "1.0.0",
"description": "The website for DDD Melbourne.",
"main": "index.js",
"author": "Oz Dev Inc.",
"license": "N/A",
"private": true,
"scripts": {
"dev": "cross-env TESTING_MODE=true APPINSIGHTS_INSTRUMENTATIONKEY=c87865f7-34bd-43db-b0ae-38537acbd0d6 GET_SUBMISSIONS_URL=https://dddmelb-functions-prod.azurewebsites.net/api/GetSubmissions SUBMIT_VOTE_URL=https://dddmelb-functions-prod.azurewebsites.net/api/SubmitVote GET_AGENDA_URL=https://dddmelb-functions-prod.azurewebsites.net/api/GetAgenda SUBMIT_FEEDBACK_URL=https://dddmelb-functions-prod.azurewebsites.net/api/SubmitFeedback next --inspect",
"build": "next build",
"start": "next start",
"analyze": "cross-env BUNDLE_ANALYZE=both next build",
"format-code": "prettier --print-width 120 --no-semi --single-quote --trailing-comma all \"pages/**/*.*\" \"components/**/*.*\" \"layouts/**/*.*\" \"config/**/*.*\" --write",
"lint": "yarn tslint --config tslint.json \"pages/**/*.*\" \"components/**/*.*\" \"layouts/**/*.*\" \"config/**/*.*\" "
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/is-prop-valid": "^0.7.3",
"@emotion/styled": "^10.0.10",
"@reach/alert": "^0.1.5",
"@reach/dialog": "^0.2.9",
"applicationinsights": "^1.2.0",
"emotion-theming": "^10.0.10",
"express": "^4.16.4",
"google-map-react": "^1.1.2",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.24.0",
"next": "^8.0.3",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-beautiful-dnd": "^11.0.3",
"react-bootstrap": "^0.32.1",
"react-bootstrap-typeahead": "^3.1.3",
"react-dom": "^16.8.4",
"react-ga": "^2.4.1",
"react-responsive-select": "^4.0.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/google-map-react": "^0.23.2",
"@types/isomorphic-fetch": "^0.0.34",
"@types/moment": "^2.13.0",
"@types/next": "^6.0.4",
"@types/prop-types": "^15.5.2",
"@types/react": "16.8.5",
"@types/react-beautiful-dnd": "^11.0.2",
"@types/react-bootstrap": "^0.32.1",
"@types/react-bootstrap-typeahead": "^2.3.0",
"@types/react-ga": "^2.3.0",
"@types/styled-jsx": "^2.2.1",
"@types/uuid": "^3.4.3",
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"cross-env": "^5.2.0",
"node-sass": "^4.11.0",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
}
}