-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.99 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "website-atlantida",
"version": "1.0.0",
"description": "Website for atlantidaaluminio.com.br",
"main": "index.js",
"scripts": {
"prettier": "prettier --single-quote --no-semi --no-bracket-spacing --trailing-comma none --write \"src/**/*.js\" --write webpack.config.js",
"lint:js": "npm run prettier && xo --fix",
"lint:css": "stylelint src/**/*.css --fix",
"lint": "npm run lint:js && npm run lint:css",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "jest --watch",
"build": "cross-env NODE_ENV=development webpack --mode development",
"build:watch": "npm run build -- -w --hide-modules",
"build:prod": "cross-env NODE_ENV=production webpack --mode production",
"serve": "node browsersync.js",
"start": "run-p -r serve build:watch",
"precommit": "lint-staged && npm test && npm run build:prod",
"cm": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gugutz/website-atlantida.git"
},
"keywords": [
"site",
"atlantida",
"aluminio"
],
"author": "Gustavo P Borges",
"license": "ISC",
"bugs": {
"url": "https://github.com/gugutz/website-atlantida/issues"
},
"homepage": "https://github.com/gugutz/website-atlantida#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.24.5",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.6",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.13.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.4.1",
"lint-staged": "^7.2.0",
"mini-css-extract-plugin": "^0.4.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.2",
"style-loader": "^0.21.0",
"webpack": "^4.10.1",
"webpack-cli": "^2.1.4",
"xo": "^0.21.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bulma": "^0.7.1"
},
"prettier": {
"singleQuote": true,
"semi": false,
"bracketSpacing": false,
"trailingComma": "none"
},
"xo": {
"parser": "babel-eslint",
"space": true,
"semicolon": false,
"envs": [
"browser",
"jest"
],
"extends": "",
"rules": {
"import/no-unassigned-import": 0,
"import/no-unresolved": 1
}
},
"lint-staged": {
"*.js": [
"npm run lint:js",
"git add"
],
"*.css": [
"npm run lint:css",
"git add"
]
},
"jest": {
"setupTestFrameworkScriptFile": "./test/setup.js",
"collectCoverageFrom": [
"src/**/*.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"\\.(css|less)$": "<rootDir>/node_modules/jest-css-modules"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}