-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.73 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
86
87
88
89
{
"name": "@brochington/ecstatic",
"version": "0.2.4",
"description": "a damn fine ECS library",
"main": "dist/bundle.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && webpack --config webpack.config.js",
"dev": "npm run clean && webpack --config webpack.config.js --watch",
"test": " ./node_modules/karma/bin/karma start",
"docs": "typedoc --out docs src && touch ./docs/.nojekyll",
"serve": "serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brochington/ecstatic.git"
},
"author": "Broch Stilley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brochington/ecstatic/issues"
},
"files": [
"dist/bundle.js",
"ecstatic.d.ts"
],
"homepage": "https://github.com/brochington/ecstatic#readme",
"types": "ecstatic.d.ts",
"dependencies": {
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"color": "^3.1.3",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.21",
"minimist": ">=1.2.5",
"qs": "^6.10.1",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"typedoc": "^0.20.35",
"uuid": "^8.3.2",
"validator": "^13.5.2",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"css-loader": "^4.3.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"html-webpack-plugin": "^4.5.2",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"local-web-server": "^4.2.1",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"serve": "^11.3.2",
"style-loader": "^1.3.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^4.46.0",
"webpack-dev-middleware": "^3.7.3",
"webpack-hot-middleware": "^2.25.0"
}
}