This repository has been archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.5 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
79
80
81
82
83
84
85
{
"name": "nodesmith-playground",
"version": "0.0.1",
"description": "API Playground to test Nodesmith calls in browser.",
"author": "Nodesmith, Inc.",
"devDependencies": {
"@types/mobx-devtools-mst": "^0.9.0",
"@types/moment": "^2.13.0",
"@types/node": "^10.1.2",
"@types/node-fetch": "^2.1.1",
"@types/query-string": "^6.1.0",
"@types/react": "^16.4.6",
"@types/react-dnd": "^2.0.36",
"@types/react-dom": "^16.0.6",
"@types/react-router-dom": "^4.3.1",
"@types/react-select": "^2.0.6",
"@types/underscore": "^1.8.8",
"babel-loader": "^7.1.4",
"copy-webpack-plugin": "^4.5.1",
"favicons-webpack-plugin": "0.0.9",
"fork-ts-checker-webpack-plugin": "^0.4.1",
"html-webpack-plugin": "^3.2.0",
"jsdom": "11.11.0",
"jsdom-global": "3.0.2",
"json-schema-to-typescript": "^5.5.0",
"nyc": "^12.0.2",
"react-hot-loader": "^4.2.0",
"ts-loader": "^4.3.0",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.8.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.11",
"yamljs": "^0.3.0"
},
"dependencies": {
"@material-ui/core": "^3.1.1",
"@material-ui/icons": "^1.1.0",
"@types/debug": "0.0.30",
"@types/jquery": "^3.3.29",
"babel-core": "^6.26.3",
"install": "^0.12.2",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"mobx": "^5.0.2",
"mobx-react": "^5.2.3",
"npm": "^6.9.0",
"prop-types": "^15.6.1",
"query-string": "^6.1.0",
"react": "^16.3.2",
"react-ace": "^6.4.0",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dom": "^16.3.2",
"react-router-dom": "^5.0.0",
"react-select": "^2.1.0",
"react-transition-group": "^2.3.1"
},
"nyc": {
"exclude": [
"types/**/*"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"scripts": {
"build": "npm run clean && ./node_modules/.bin/tsc && npm run lint && npm run build:webpack",
"build:webpack": "./node_modules/.bin/webpack --mode production --progress --profile --colors",
"clean": "./node_modules/.bin/rimraf dist && ./node_modules/.bin/rimraf lib",
"dev": "./node_modules/.bin/webpack-dev-server --hot --inline --mode development -d",
"lint": "npm run lint:typescript",
"lint:typescript": "./node_modules/.bin/tslint --project tsconfig.json"
}
}