-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.09 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "product-gallery",
"version": "1.0.0",
"description": "A simple product browser",
"author": "Alastair Todd",
"license": "MIT",
"main": "index.js",
"scripts": {
"specs": "karma start karma.conf.js",
"test": "jest",
"prepare-tests": "jest -u",
"eslint": "eslint src",
"watch-js-debug": "watchify -t [ babelify ] src/index.js --debug -o build/app.js -v",
"watch-js": "watchify -t [ babelify ] src/index.js -o build/app.js -v",
"build-js": "browserify -t [ babelify ] src/index.js -o build/app.js -v",
"watch-sass": "node-sass --include-path assets/sass assets/sass/app.scss assets/css/app.css -w",
"build-sass": "node-sass --include-path assets/sass assets/sass/app.scss assets/css/app.css",
"build": "npm run build-sass && npm run build-js",
"start": "ws --spa index.html",
"debug": "parallelshell \"npm run watch-sass\" \"npm run watch-js-debug\" \"npm run start\" ",
"proxy": "corsproxy",
"proxy-alt": "cors-proxy"
},
"repository": {
"type": "git",
"url": "https://github.com/alastair-todd/product-browser.git"
},
"jest": {
"automock": false
},
"dependencies": {
"jquery": "^3.1.0",
"react": "^15.3.0",
"react-bootstrap": "^0.30.2",
"react-dom": "^15.3.0",
"react-edit-inline": "^1.0.7",
"react-router": "^2.6.1",
"react-router-bootstrap": "^0.23.1"
},
"devDependencies": {
"babel-jest": "^14.1.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"cors-proxy": "^0.1.0",
"corsproxy": "^1.4.0",
"ecstatic": "^2.1.0",
"eslint": "^3.3.1",
"eslint-config-standard": "^5.3.5",
"eslint-config-standard-react": "^3.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"jasmine-core": "^2.4.1",
"jest": "^14.1.0",
"karma": "^1.2.0",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"local-web-server": "^1.2.6",
"node-sass": "^3.8.0",
"parallelshell": "^2.0.0",
"react-test-renderer": "^15.3.1",
"standard": "^7.1.2",
"watchify": "^3.7.0"
}
}