-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.76 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": "@prkirby/pts-sandbox",
"version": "1.0.13",
"description": "A sandbox to create tools, test ideas, and create sketches using PtsJS",
"repository": "git://github.com/prkirby/pts-sandbox.git",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"watch": "webpack --watch",
"start": "webpack serve --open",
"clean": "rm -rf dist lib",
"tsc": "tsc -p tsconfig-cjs.json && tsc -p tsconfig.json",
"build": "npm run clean && npm run tsc && npm run copy:assets",
"copy:assets": "cp -R src/assets lib/cjs/assets && cp -R src/assets lib/esm/assets",
"prepack": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"mathjs": "^10.1.0",
"pts": "^0.10.9",
"react-pts-canvas": "^0.2.8"
},
"peerDependencies": {
"react": "^17.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.12.13",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"csv-loader": "^3.0.3",
"eslint": "^7.19.0",
"html-webpack-plugin": "^4.5.1",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.20.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"window-resizeto": "0.0.2",
"xml-loader": "^1.2.1"
}
}