-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.81 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
{
"name": "dp-developer-site",
"version": "0.0.1",
"description": "CSS and Javascript assets for developer.ons.gov.uk",
"main": "index.js",
"scripts": {
"test": "jest --config ./jest.config.json",
"build": "npm run build:css && npm run build:js",
"build:css": "sass scss/main.scss assets/assets/css/main.css --style=compressed",
"build:js": "npm run lint:fix && webpack --mode=production --config ./webpack.config.js",
"watch": "npm run watch:css && npm run watch:js",
"watch:js": "webpack --mode=development --config ./webpack.config.js --watch",
"watch:css": "sass -w --embed-source-map --style=expanded scss/main.scss ./assets/assets/css/main.css",
"lint": "eslint \"**/*.js\" --ignore-path .gitignore .",
"lint:fix": "eslint \"**/*.js\" --ignore-path .gitignore . --fix",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ONSdigital/dp-developer-site.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/ONSdigital/dp-developer-site/issues"
},
"homepage": "https://github.com/ONSdigital/dp-developer-site#readme",
"dependencies": {
"@babel/polyfill": "^7.11.5",
"code-prettify": "^0.1.0",
"highcharts": "^11.4.6",
"sass": "^1.77.8",
"serve": "^14.2.4"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-eslint": "^10.0.3",
"babel-jest": "^29.7.0",
"babel-loader": "^8.1.0",
"babel-preset": "^1.1.6",
"eslint": "^6.1.0",
"eslint-config-google": "^0.14.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}