forked from dddwa/dddperth-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.07 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
{
"name": "dddperth-website",
"version": "1.0.0",
"description": "The website for DDD Perth.",
"main": "index.js",
"author": "DDD WA Inc.",
"license": "N/A",
"private": true,
"scripts": {
"dev": "cross-env TESTING_MODE=true APPINSIGHTS_INSTRUMENTATIONKEY=2f1d6a9c-1b88-4f3d-bba1-64b11ffd2362 GET_SUBMISSIONS_URL=http://localhost:7071/api/GetSubmissions SUBMIT_VOTE_URL=http://localhost:7071/api/SubmitVote GET_AGENDA_URL=https://dddperth-functions-prod.azurewebsites.net/api/GetAgenda 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": {
"applicationinsights": "^1.0.2",
"express": "^4.16.2",
"google-map-react": "^0.32.0",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.20.1",
"next": "^5.0.1-canary.8",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-bootstrap": "^0.32.1",
"react-bootstrap-typeahead": "^3.1.3",
"react-dom": "^16.2.0",
"react-ga": "^2.4.1",
"react-overlays": "^0.8.3",
"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": "^2.4.8",
"@types/prop-types": "^15.5.2",
"@types/react": "16.0.34",
"@types/react-bootstrap": "^0.32.1",
"@types/react-bootstrap-typeahead": "^2.3.0",
"@types/react-ga": "^2.3.0",
"@types/react-overlays": "^0.8.4",
"@types/styled-jsx": "^2.2.1",
"@types/uuid": "^3.4.3",
"@zeit/next-bundle-analyzer": "^0.0.4",
"@zeit/next-sass": "^0.1.1",
"@zeit/next-typescript": "^0.0.10",
"cross-env": "^5.1.3",
"node-sass": "^4.9.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}