-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "blog2017",
"version": "1.0.0",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node dist/index.js"
},
"author": "caohuilin <[email protected]>",
"dependencies": {
"classnames": "2.2.5",
"glob": "7.1.2",
"isomorphic-unfetch": "2.0.0",
"lodash": "^4.17.13",
"marked": "0.6.1",
"mobx": "5.8.0",
"mobx-react": "5.4.3",
"next": "9.0.5",
"next-routes": "1.4.2",
"normalize.css": "7.0.0",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-motion": "0.5.2",
"typescript": "3.4.5"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@types/classnames": "^2.2.9",
"@types/lodash": "4.14.85",
"@types/marked": "^0.6.5",
"@types/node": "^12.7.4",
"@types/react": "^16.8.17",
"@types/react-dom": "16.8.4",
"@types/react-motion": "^0.0.29",
"autoprefixer": "7.1.5",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-wrap-in-js": "1.1.0",
"cross-env": "^5.2.1",
"lost": "8.2.0",
"mime": "2.0.3",
"nodemon": "^1.19.2",
"postcss-easy-import": "3.0.0",
"postcss-loader": "2.0.7",
"postcss-nested": "2.1.2",
"raw-loader": "0.5.1",
"styled-jsx-plugin-postcss": "0.1.0",
"ts-node": "^8.3.0"
},
"postcss": {
"plugins": {
"lost": {},
"postcss-nested": {}
}
}
}