-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "build_pipeline_test",
"version": "1.0.0",
"description": "Build Pipeline Playground",
"author": "Megan Logsdon",
"main": "index.js",
"scripts": {
"start": "docker-compose up",
"dev": "run-p build:watch serve:watch",
"lint:js": "eslint . --ext .js,.ts",
"lint:css": "stylelint 'src/scss/*.scss'",
"build": "NODE_ENV=production webpack --progress",
"build:watch": "NODE_ENV=development webpack --progress -w",
"serve": "NODE_ENV=production node dist/server.js",
"serve:watch": "NODE_ENV=development node dist/server.js",
"test": "jest"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.17.1",
"node-polyfill-webpack-plugin": "^2.0.1"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"css-loader": "^6.7.1",
"eslint": "^8.25.0",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"stylelint": "^14.14.0",
"stylelint-config-standard-scss": "^5.0.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}