forked from vinlegend1/DogePhysics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "phys-sim",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:export": "next build && next export",
"test": "jest",
"netlify:deploy": "netlify deploy -p -m \"$(git log -1 --pretty=%B)\""
},
"dependencies": {
"gray-matter": "^4.0.3",
"marked": "^2.0.3",
"next": "10.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-latex": "^2.0.0",
"react-swipeable": "^6.1.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@types/marked": "^2.0.2",
"@types/node": "^15.0.2",
"@types/react": "^17.0.5",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"netlify-cli": "^3.30.2",
"typescript": "^4.2.4"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}