-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.36 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.36 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
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
{
"name": "project-euler-js",
"version": "0.0.0",
"description": "Challenge in solving Project Euler problems in JavaScript.",
"scripts": {
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack-dev-server --open --config webpack.dev.js",
"start": "webpack -p --progress --config webpack.prod.js && node ./start.js",
"develop": "concurrently \"npm run watch\" \"npm run assets\" --names \"💻,📦\" --prefix name",
"watch": "nodemon ./start.js --ignore public/",
"assets": "webpack -w --config webpack.dev.js --display-max-modules 0",
"format": "prettier --write src/**/*.{js,jsx}",
"lint": "eslint --ignore-pattern '/public/dist/*' -o ./eslint_result.html -f html .",
"lint:fix": "eslint --ignore-pattern '/public/dist/*' . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spidergon/Project-Euler-JS.git"
},
"keywords": [
"projecteuler",
"math",
"javascript",
"nodejs"
],
"author": "Christopher Servius",
"license": "ISC",
"bugs": {
"url": "https://github.com/spidergon/Project-Euler-JS/issues"
},
"homepage": "https://github.com/spidergon/Project-Euler-JS#readme",
"dependencies": {
"big-integer": "^1.6.43",
"body-parser": "1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"line-by-line": "^0.1.6",
"mathjs": "^6.0.0",
"present": "^1.0.0",
"pug": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"autoprefixer": "9.6.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"now": "^15.4.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.1"
}
}