-
Notifications
You must be signed in to change notification settings - Fork 219
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "introduction-to-fourier-transforms",
"version": "1.0.0",
"description": "",
"type": "module",
"watch": {
"makehtml": {
"patterns": [
"content/*.md",
"script/make-html.js"
],
"extensions": "md,js"
},
"webpack": "js/**/*.js",
"css": "css/styles.css",
"img": "img/*"
},
"scripts": {
"start": "http-server build",
"webpack": "webpack || exit 1",
"webpack-prod": "webpack --mode=production || exit 1",
"makehtml": "node script/make-html",
"css": "cp -r css build/",
"img": "cp -r img build/",
"preview": "cp preview.png build/",
"build": "npm run webpack && npm run makehtml && npm run css && npm run img && npm run preview",
"test": "CI=true mocha ./**/*.test.*js",
"watch": "npm-watch",
"reload": "reload -b -d build"
},
"author": "Jezzamon",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"babel-loader": "^9.1.3",
"chai": "^4.3.6",
"front-matter": "^4.0.2",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"mocha-chai-jest-snapshot": "^1.1.4",
"mustache": "^4.2.0",
"npm-watch": "^0.11.0",
"regenerator-runtime": "^0.14.1",
"reload": "^3.2.1",
"showdown": "^2.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"browser-image-compression": "2.0.2",
"fft.js": "^4.0.4",
"matrix-multiplication": "^0.5.2"
}
}