forked from cesium/cesium.link
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.6 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": "linker",
"version": "1.0.0-beta",
"private": true,
"scripts": {
"develop": "npm-run-all dev",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm-run-all lint:*",
"lint:js": "next lint",
"lint:css": "stylelint --fix './**/*.{css,js,ts,tsx}' --ignore-path .gitignore",
"fmt": "npm-run-all format",
"format": "prettier --write . --ignore-path .gitignore",
"test": "npm-run-all test:*",
"test:lint": "npm-run-all test:lint:*",
"test:lint:js": "eslint . --ignore-path .gitignore",
"test:lint:css": "stylelint './**/*.{css,js,jsx,ts,tsx}' --ignore-path .gitignore",
"test:format": "prettier --check . --ignore-path .gitignore"
},
"dependencies": {
"@ant-design/icons": "^4.6.4",
"animate.css": "^4.1.1",
"antd": "^4.16.6",
"argon2": "^0.28.2",
"lodash": "^4.17.21",
"luxon": "^1.27.0",
"mongoose": "^5.13.2",
"nanoid": "^3.1.23",
"next": "^11.0.1",
"next-iron-session": "^4.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-emoji-render": "^1.2.4",
"react-icons": "^4.1.0",
"react-sortable-hoc": "^1.11.0",
"redaxios": "^0.4.1"
},
"devDependencies": {
"@types/react": "^17.0.19",
"eslint": "^7.30.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"stylelint": "^13.9.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.4.2"
}
}