-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.2 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.2 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
{
"name": "cat",
"version": "1.0.1",
"description": "The Charting Application Tester (CAT) lets users make and adjust web graphics on the fly.",
"module": "./src/index.js",
"main": "./build/cat.js",
"scripts": {
"build": "npm audit fix && npm run bundle && npm run format",
"bundle": "rollup -c",
"format": "npm run format-src && npm run format-bundle",
"format-src": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/*.js\"",
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write ./build/cat.js",
"watch": "rollup -c -w",
"start": "node server/app.js",
"initServer": "node server/initServer.js"
},
"author": "Rho, Inc.",
"license": "MIT",
"dependencies": {
"body-parser": "~1",
"d3": "^3.5.14",
"express": "~4",
"jquery": "^3.6.0",
"json5": "^0.5.1",
"webcharts": "~1"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"jimp": "^0.16.1",
"jsdom": "~7",
"prettier": "^1.19.1",
"promise-polyfill": "8.1.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^2.7.1",
"showdown": "^1.9.1",
"url-parse": "^1.4.7"
}
}