-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.43 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.43 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "cube",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 4015",
"pm2": "pm2 start npm --name odin -- start"
},
"dependencies": {
"antd": "^4.6.2",
"axios": "^0.20.0",
"classnames": "^2.2.6",
"codemirror": "^5.57.0",
"lodash": "^4.17.20",
"mobx": "^5.15.6",
"mobx-react": "^6.3.0",
"next": "9.5.3",
"react": "16.13.1",
"react-codemirror2": "^7.2.1",
"react-color": "^2.18.1",
"react-dom": "16.13.1",
"reflect-metadata": "^0.1.13",
"showdown": "^1.9.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@fantasticit/code-lint": "^0.0.5",
"@interactjs/types": "^1.9.22",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-import": "^1.13.0",
"babel-plugin-parameter-decorator": "^1.0.16",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-typescript-metadata": "^0.3.0",
"commitizen": "^4.2.1",
"cz-customizable": "^6.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^10.3.0",
"next-compose-plugins": "^2.2.0",
"node-sass": "^4.14.1",
"sass": "^1.26.10",
"stylelint": "^13.7.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}