-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "neu3d",
"version": "1.1.4",
"description": "A npm package for rendering connectome data.",
"main": "./lib/neu3d.min.js",
"types": "./typings/index.d.ts",
"scripts": {
"build": "npx webpack --config webpack.config.js",
"watch": "npx webpack --config webpack.config.js --watch",
"dev": "npx webpack --config webpack.config.js --watch",
"lint": "npx eslint src/**",
"clean": "rimraf lib",
"clean:node_modules": "rimraf node_modules lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fruitflybrain/neu3d.git"
},
"author": "Tingkai Liu, Mehmet Turkcan, Nikul H. Ukani, Chung-Heng Yeh, Yiyin Zhou",
"license": "ISC",
"bugs": {
"url": "https://github.com/fruitflybrain/neu3d/issues"
},
"homepage": "https://github.com/fruitflybrain/neu3d#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"bootstrap": "^5.2.3",
"dat.gui": "^0.7.9",
"exports-loader": "^4.0.0",
"imports-loader": "^4.0.1",
"jquery": "^3.7.0",
"lodash": "^4.17.21",
"stats.js": "^0.17.0",
"three": "^0.151.3"
},
"devDependencies": {
"css-loader": "^6.7.4",
"eslint": "^8.41.0",
"rimraf": "^5.0.1",
"style-loader": "^3.3.3",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
}
}