-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.38 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "nus-computing",
"private": true,
"description": "NUS Computing Website 2020",
"version": "1.0.0",
"author": "Jeff Sieu <jeffsy00@gmail.com>",
"dependencies": {
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.60",
"@types/jest": "^26.0.24",
"@types/node": "^16.0.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"gatsby": "^3.9.0",
"gatsby-plugin-image": "^1.9.0",
"gatsby-plugin-manifest": "^3.9.0",
"gatsby-plugin-material-ui": "^3.0.1",
"gatsby-plugin-offline": "^4.9.0",
"gatsby-plugin-react-helmet": "^4.9.0",
"gatsby-plugin-sharp": "^3.9.0",
"gatsby-plugin-use-dark-mode": "^1.3.0",
"gatsby-source-filesystem": "^3.9.0",
"gatsby-transformer-sharp": "^3.9.0",
"gatsby-transformer-yaml": "^3.9.0",
"js-yaml": "^4.1.0",
"loader-utils": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"ts-loader": "9.2.3",
"typescript": "^4.3.5",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.6",
"@graphql-codegen/typescript": "^1.22.4",
"@graphql-codegen/typescript-operations": "^1.18.3",
"@types/react-helmet": "^6.1.2",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"concurrently": "^6.2.0",
"eslint": "^7.30.0",
"gh-pages": "^3.2.3",
"prettier": "2.3.2"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "concurrently \"gatsby develop\" \"yarn generate --watch\"",
"deploy": "npm run build && npm run cleanup && gh-pages -d public",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"cleanup": "rimraf node_modules/.cache/gh-pages",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint ./src/**/*.tsx --ext .js",
"generate": "graphql-codegen"
},
"repository": {
"type": "git",
"url": "https://github.com/NUSComputingDev/beta-nuscomputing"
},
"bugs": {
"url": "https://github.com/NUSComputingDev/beta-nuscomputing/issues"
}
}