-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.67 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@dash4/plugin-readme",
"version": "0.9.2",
"private": false,
"description": "dash4 plugin readme",
"repository": "https://github.com/smollweide/dash4",
"license": "MIT",
"author": "Simon Mollweide<simon.mollweide@gmail.com>",
"main": "./build/server/index.js",
"typings": "./build/server/index.d.ts",
"files": [
"build",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"analyze-bundle-size": "cross-env NODE_ENV=production ANALYZE_ENV=bundle webpack --mode production",
"prebuild": "rimraf build dist",
"build": "npm-run-all build:*",
"build:client": "cross-env NODE_ENV=production webpack --mode production",
"build:server": "tsc --outDir build --project tsconfig.server.json",
"prepublishOnly": "npm-run-all test build",
"start": "cross-env NODE_ENV=development nodemon ./node_modules/@dash4/server/bin --watch ./build --watch ./dash4.config.js",
"static": "node ./node_modules/@dash4/server/bin",
"test": "npm-run-all test:*",
"test-update-snapshots:client": "jest --coverage --update-snapshot --config=jest.config.js",
"test:client": "jest --coverage --config=jest.config.js",
"test:server": "jest --coverage --config=jest.server.config.js",
"watch-build": "tsc --watch --outDir build --project tsconfig.server.json",
"watch-dist": "cross-env NODE_ENV=development webpack --mode production --watch",
"watch-test-client": "jest --coverage --watchAll --config=jest.config.js",
"watch-test-server": "jest --coverage --watchAll --config=jest.server.config.js"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.9.2",
"@dash4/server": "0.9.2",
"fs-extra": "9.0.1",
"highlight.js": "10.4.1",
"markdown-to-jsx": "7.0.1",
"mime-types": "2.1.27",
"node-emoji": "1.10.0"
},
"devDependencies": {
"@dash4/client": "0.9.2",
"@dash4/config": "0.9.2",
"@dash4/ui": "0.9.2",
"@emotion/core": "10.0.35",
"@testing-library/react": "10.4.9",
"@testing-library/react-hooks": "3.4.2",
"@types/fs-extra": "9.0.4",
"@types/highlight.js": "10.1.0",
"@types/jest": "26.0.15",
"@types/markdown-to-jsx": "6.11.3",
"@types/mime-types": "2.1.0",
"@types/node": "14.14.8",
"@types/node-emoji": "1.8.1",
"@types/react": "16.9.56",
"@types/react-dom": "16.9.9",
"cross-env": "7.0.2",
"jest": "26.6.3",
"nodemon": "2.0.6",
"npm-run-all": "4.1.5",
"react": "16.13.1",
"react-bootstrap": "1.4.0",
"react-container-query": "0.11.3",
"react-dom": "16.13.1",
"rimraf": "3.0.2",
"ts-jest": "26.4.4",
"typescript": "3.9.5",
"webpack": "4.44.1"
}
}