-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_backup.package.json
42 lines (42 loc) · 1.21 KB
/
_backup.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
{
"name": "dreidee",
"description": "",
"license": "MIT",
"version": "0.0.1",
"devDependencies": {
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"esm": "^3.0.84",
"file-loader": "^2.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"mocha": "^7.1.2",
"npm-run-all": "^4.1.3",
"style-loader": "^0.23.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"copy-webpack-plugin": "^5.1.1",
"mithril": "^1.1.7",
"stats.js": "^0.17.0"
},
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --mode development --config webpack.config.js",
"build": "webpack -p --progress --mode production --config webpack.config.js",
"test": "./node_modules/mocha/bin/mocha test/**/*.js --reporter spec -r esm",
"lint": "eslint src/**/*.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
}