-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.11 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.11 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
62
63
64
65
66
67
{
"name": "classtimes-frontend-razzle",
"version": "1.0",
"license": "Copyright ClassTimes 2021",
"engines": {
"node": "^15.11.0"
},
"scripts": {
"export": "razzle export",
"prestart:prod": "yarn build",
"prestart": "rm -rf ./node_modules/.cache/babel-loader",
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js",
"deploy": "git push heroku master",
"favicons:generate": "node scripts/generate_favicons.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@apollo/client": "^3.3.11",
"axios": "^0.21.1",
"cross-fetch": "^3.0.6",
"dayjs": "^1.10.4",
"express": "^4.17.1",
"graphology": "^0.19.3",
"graphology-components": "^1.1.0",
"graphql": "^15.5.0",
"html-react-parser": "^1.2.4",
"interval-tree-type": "^1.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"rrule": "^2.6.8",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/react": "^6.1.21",
"@testing-library/react": "^11.2.5",
"@types/express": "^4.17.11",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/styled-components": "^5.1.7",
"babel-loader": "^8.2.2",
"babel-plugin-graphql-tag": "^3.2.0",
"babel-plugin-import-graphql": "^2.8.1",
"babel-plugin-styled-components": "^1.12.0",
"babel-preset-razzle": "4.0.1-canary.11",
"favicons": "^6.2.1",
"favicons-webpack-plugin": "^5.0.2",
"graphology-types": "^0.19.2",
"html-webpack-plugin": "5.2.0",
"jest-styled-components": "^7.0.3",
"mini-css-extract-plugin": "^0.9.0",
"postcss": "8.2.4",
"razzle": "^4.0.1-canary.11",
"razzle-dev-utils": "^4.0.1-canary.11",
"typescript-plugin-styled-components": "^1.4.4",
"webpack": "5.24.0",
"webpack-dev-server": "^3.11.2"
}
}