-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"name": "GoTCharacterMap",
"version": "0.0.1",
"description": "Tracking the relationships between all Game of Thrones characters",
"author": "B.J. May",
"license": "UNLICENSED",
"main": "src/index.js",
"scripts": {
"build": "mkdirp build && webpack --config webpack-build.config.js",
"clean": "rm -rf build && rm -rf docs",
"html": "copyfiles -u 1 src/*.html src/**/*.html build",
"lint": "eslint . --ignore-path .gitignore",
"serve": "webpack-dev-server --config webpack-dev.config.js --host 0.0.0.0",
"static": "mkdirp build && copyfiles -u 1 static/* build/static/",
"test": "tape -r babel-register -r ignore-styles \"test/**/*-test.js\"",
"test-int": "tape -r ./test-int/start-server.js \"test-int/**/*-test.js\"",
"test-watch": "watch 'npm run test -s' src test",
"rebuild": "npm run clean && npm run build && npm run static"
},
"repository": {
"type": "git",
"url": "https://sfgitlab.opr.statefarm.org/HEA4/GoTCharacterMap.git"
},
"devDependencies": {
"babel-core": "~6.26.3",
"babel-loader": "~8.0.5",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "~6.26.0",
"copyfiles": "~2.1.0",
"css-loader": "~2.1.1",
"eslint": "~5.16.0",
"expose-loader": "~0.7.5",
"file-loader": "~3.0.1",
"html-webpack-plugin": "~3.2.0",
"ignore-styles": "~5.0.1",
"jsdom": "~14.0.0",
"less": "~3.9.0",
"less-loader": "~4.1.0",
"mkdirp": "~0.5.1",
"raw-loader": "~2.0.0",
"sinon": "~7.3.1",
"style-loader": "~0.23.1",
"tape": "~4.10.1",
"url-loader": "~1.1.2",
"watch": "~1.0.2",
"webpack": "~4.30.0",
"webpack-dev-server": "~3.3.1"
},
"dependencies": {
"d3": "~5.9.2",
"jquery": "~3.4.0"
}
}