-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.45 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
{
"name": "bootcamp",
"description": "Li Yan Weather Forecast",
"engines": {
"node": "12.9.1",
"npm": "6.10.2"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "node server.js",
"update-weather-static": "ts-node weather-static.js",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.10.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"@zeit/next-less": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"acorn": "^7.2.0",
"antd": "^3.20.5",
"aos": "^3.0.0-beta.6",
"babel-plugin-import": "^1.12.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"big.js": "^5.2.2",
"ejs": "^2.7.1",
"express": "^4.17.1",
"isomorphic-unfetch": "^3.0.0",
"kind-of": "^6.0.3",
"minimist": "^1.2.5",
"moment": "^2.24.0",
"next": "^9.3.2",
"nprogress": "^0.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scroll": "^1.7.12",
"ts-node": "^8.3.0"
},
"license": "ISC",
"devDependencies": {
"@types/aos": "^3.0.1",
"@types/next": "^8.0.6",
"@types/next-server": "^8.1.2",
"@types/node": "^12.6.8",
"@types/styled-jsx": "^2.2.8",
"@types/webpack-env": "^1.14.0",
"less": "^3.9.0",
"typescript": "^3.5.3"
}
}