-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.7 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.7 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
{
"name": "math",
"version": "0.7.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"version": "auto-changelog -p -l 0 && git add CHANGELOG.md",
"test": "nyc mocha -r ts-node/register -r tsconfig-paths/register app/tests/index.ts",
"test-unit": "nyc mocha -r ts-node/register -r tsconfig-paths/register app/tests/unit/index.ts",
"test-ci": "mocha -r ts-node/register -r tsconfig-paths/register app/tests/index.ts",
"test-unit-ci": "mocha -r ts-node/register -r tsconfig-paths/register app/tests/unit/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weiseng18/math.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/weiseng18/math/issues"
},
"homepage": "https://github.com/weiseng18/math#readme",
"dependencies": {
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"auto-changelog": "^2.3.0",
"axios": "^0.21.1",
"express": "^4.17.1",
"framer-motion": "^4.1.17",
"lodash": "^4.17.21",
"next": "^11.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"test-listen": "^1.1.0",
"typescript": "^3.9.3",
"vercel-node-server": "^2.2.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.15",
"@types/test-listen": "^1.1.0",
"@vercel/node": "^1.11.1",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"husky": "^7.0.1",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"ts-node": "^8.9.1",
"tsconfig-paths": "^3.10.1"
}
}