-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.39 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.39 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
{
"name": "hyperapptemplate",
"version": "0.1.0",
"private": true,
"dependencies": {
"hyperapp": "^1.2.5"
},
"scripts": {
"start": "cross-env NODE_ENV=development parcel ./src/index.html --out-dir build",
"test": "npm-run-all -s --silent lint unittest e2etest",
"build": "npm-run-all test createbuild",
"createbuild": "cross-env NODE_ENV=production parcel build ./src/index.html --public-url /",
"lint": "npm-run-all -s prettier standard",
"standard": "standard --verbose \"src/**/*.js\" \"cypress/**/*.js\" | snazzy",
"prettier": "prettier-standard 'src/**/*.js' 'cypress/**/*.js'",
"unittest": "jest --no-cache",
"e2etest": "start-server-and-test start http://localhost:1234 cy:run",
"cy:open": "cypress open",
"cy:run": "cypress run --config videoRecording=false"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.4",
"cypress": "^2.1.0",
"hyperapp-redux-devtools": "^1.1.6",
"hyperapp-render": "^1.1.0",
"jest": "^22.4.3",
"npm-run-all": "^4.1.2",
"parcel-bundler": "^1.7.0",
"prettier-standard": "^8.0.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"start-server-and-test": "^1.1.0"
},
"standard": {
"parser": "babel-eslint",
"env": [
"jest"
],
"globals": [
"cy"
]
}
}